Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed Jul 16, 2020
1 parent ac91676 commit 5382abe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,26 +214,28 @@ Use EasyBind in your project

### Stable release

Current stable release is 1.2.2.
Current stable release is `2.0.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 easist 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 | 1.2.2 |
| com.tobiasdiez | easybind | 2.0.0 |

#### Gradle example

```groovy
dependencies {
compile group: 'com.tobiasdiez', name: 'easybind', version: '1.2.2'
compile group: 'com.tobiasdiez', name: 'easybind', version: '2.0.0'
}
```

#### Sbt example

```scala
libraryDependencies += "com.tobiasdiez" % "easybind" % "1.2.2"
libraryDependencies += "com.tobiasdiez" % "easybind" % "2.0.0"
```

#### Manual download
Expand All @@ -249,7 +251,7 @@ Snapshot releases are deployed to Sonatype snapshot repository.

| Group ID | Artifact ID | Version |
| :-----------------: | :---------: | :------------: |
| com.tobiasdiez | easybind | 1.0.4-SNAPSHOT |
| com.tobiasdiez | easybind | 2.0.0-SNAPSHOT |

#### Gradle example

Expand All @@ -261,7 +263,7 @@ repositories {
}
dependencies {
compile group: 'com.tobiasdiez', name: 'easybind', version: '1.0.4-SNAPSHOT'
compile group: 'com.tobiasdiez', name: 'easybind', version: '2.0.0-SNAPSHOT'
}
```

Expand All @@ -270,10 +272,10 @@ dependencies {
```scala
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies += "com.tobiasdiez" % "easybind" % "1.0.4-SNAPSHOT"
libraryDependencies += "com.tobiasdiez" % "easybind" % "2.0.0-SNAPSHOT"
```

#### Manual download

[Download](https://oss.sonatype.org/content/repositories/snapshots/org/fxmisc/easybind/easybind/1.0.4-SNAPSHOT/) the latest JAR file and place it on your classpath.
[Download](https://oss.sonatype.org/content/repositories/snapshots/com/tobiasdiez/easybind/) the latest JAR file and place it on your classpath.

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {
}

group = 'com.tobiasdiez'
version = '2.0.0-SNAPSHOT'
version = '2.0.0'
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")

// Ensure Java 8 compatibility while providing proper module description
Expand Down

0 comments on commit 5382abe

Please sign in to comment.