Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed May 18, 2021
1 parent d613b81 commit eaac0c2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,28 +214,28 @@ 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.

#### Maven coordinates

| 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
Expand All @@ -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

Expand All @@ -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'
}
```

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eaac0c2

Please sign in to comment.