diff --git a/CHANGELOG.md b/CHANGELOG.md index 960e645..596bfd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. ## [Unreleased] ### Added ### Changed +### Removed + +## [2.2.0] - 2021-05-18 +### Added +### Changed - Mark JavaFX dependency as transitive. Thanks to Sebastian Stenzel. - Remove `classifier = linux` for JavaFX dependency in the `pom` file. This makes it easier to use the library on different OS without pulling-in the wrong dependencies. @@ -60,6 +65,8 @@ Last official release by [Tomas Mikula](https://github.com/TomasMikula/EasyBind) [Unreleased]: https://github.com/tobiasdiez/EasyBind/compare/v1.2.2...master -[2.0.0]: https://github.com/tobiasdiez/EasyBind/compare/v1.2.2...v2.0.0 +[2.2.0]: https://github.com/tobiasdiez/EasyBind/compare/2.1.0...2.2.0 +[2.1.0]: https://github.com/tobiasdiez/EasyBind/compare/2.0.0...2.1.0 +[2.0.0]: https://github.com/tobiasdiez/EasyBind/compare/v1.2.2...2.0.0 [1.2.2]: https://github.com/tobiasdiez/EasyBind/compare/v1.0.3...v1.2.2 [1.0.3]: https://github.com/tobiasdiez/EasyBind/releases/tag/v1.0.3 diff --git a/README.md b/README.md index cfb8f36..7ccdccd 100644 --- a/README.md +++ b/README.md @@ -214,7 +214,7 @@ Use EasyBind in your project ### Stable release -Current stable release is `2.1.0`. +Current stable release is `2.2.0`. It contains many new features, but also breaks backwards compatibility to the `1.x` versions as many methods have been renamed; see the [Changelog](CHANGELOG.md) for details. In case you are upgrading from the `EasyBind` library developed by by Tomas Mikula, then the easiest option is to use version `1.2.2` which includes a few improvements and bug fixes while being compatible with older versions. @@ -222,20 +222,20 @@ In case you are upgrading from the `EasyBind` library developed by by Tomas Miku | Group ID | Artifact ID | Version | | :-----------------: | :---------: | :-----: | -| com.tobiasdiez | easybind | 2.1.0 | +| com.tobiasdiez | easybind | 2.2.0 | #### Gradle example ```groovy dependencies { - compile group: 'com.tobiasdiez', name: 'easybind', version: '2.1.0' + compile group: 'com.tobiasdiez', name: 'easybind', version: '2.2.0' } ``` #### Sbt example ```scala -libraryDependencies += "com.tobiasdiez" % "easybind" % "2.1.0" +libraryDependencies += "com.tobiasdiez" % "easybind" % "2.2.0" ``` #### Manual download @@ -251,7 +251,7 @@ Snapshot releases are deployed to Sonatype snapshot repository. | Group ID | Artifact ID | Version | | :-----------------: | :---------: | :------------: | -| com.tobiasdiez | easybind | 2.1.1-SNAPSHOT | +| com.tobiasdiez | easybind | 2.2.1-SNAPSHOT | #### Gradle example @@ -263,7 +263,7 @@ repositories { } dependencies { - compile group: 'com.tobiasdiez', name: 'easybind', version: '2.1.1-SNAPSHOT' + compile group: 'com.tobiasdiez', name: 'easybind', version: '2.2.1-SNAPSHOT' } ``` @@ -272,7 +272,7 @@ dependencies { ```scala resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" -libraryDependencies += "com.tobiasdiez" % "easybind" % "2.1.1-SNAPSHOT" +libraryDependencies += "com.tobiasdiez" % "easybind" % "2.2.1-SNAPSHOT" ``` #### Manual download diff --git a/build.gradle b/build.gradle index e4dfc77..9259987 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ repositories { } group = 'com.tobiasdiez' -version = '2.1.1-SNAPSHOT' +version = '2.2' ext.isReleaseVersion = !version.endsWith("SNAPSHOT") sourceCompatibility = JavaVersion.VERSION_1_9