diff --git a/CHANGELOG.md b/CHANGELOG.md index 772725b7..60795811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ FlatLaf Change Log ================== -## 2.0-SNAPSHOT +## 2.0 - Added system property `flatlaf.nativeLibraryPath` to load native libraries from a directory. (PR #453) @@ -26,9 +26,9 @@ FlatLaf Change Log (instead of using JetBrains custom decorations). System variable `flatlaf.useJetBrainsCustomDecorations` is now `false` by default (was `true` in FlatLaf 1.x). (issue #454) -- Native window decorations: Fixed blurry iconify/maximize/close button hover - rectangles at 125%, 150% or 175% scaling. (issue #431) - Native window decorations: + - Fixed blurry iconify/maximize/close button hover rectangles at 125%, 150% or + 175% scaling. (issue #431) - Updated maximize and restore icons for Windows 11 style. (requires Java 8u321, 11.0.14, 17.0.2 or 18+) - Updated hover and pressed colors of iconify/maximize/close buttons for diff --git a/build.gradle.kts b/build.gradle.kts index c419120e..429be7e9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,8 +14,8 @@ * limitations under the License. */ -val releaseVersion = "2.0-rc1" -val developmentVersion = "2.0-SNAPSHOT" +val releaseVersion = "2.0" +val developmentVersion = "2.1-SNAPSHOT" version = if( java.lang.Boolean.getBoolean( "release" ) ) releaseVersion else developmentVersion