Changed references to version 1.1.0.

This commit is contained in:
Erik C. Thauvin 2018-07-01 01:34:27 -07:00
parent 8b0ab8cde2
commit 277b27c2c1

View file

@ -158,7 +158,7 @@ example.meta=
# ...
```
> :warning: `keysPrefix` is a new element in `1.0.0` and may break older versions when using custom property keys.
> :warning: `keysPrefix` is a new element in `1.1.0` and may break older versions when using custom property keys.
> :zap: A quick fix is to include `keysPrefix=""` in the annotation to remove the default `version.` prefix.
## Usage with Maven, Grail, Kobalt and Kotlin
@ -171,7 +171,7 @@ To install and run from [Maven](http://maven.apache.org/), configure an artifact
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>semver</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</dependency>
```
@ -183,8 +183,8 @@ To install and run from [Gradle](https://gradle.org/), add the following to the
```gradle
dependencies {
annotationProcessor 'net.thauvin.erik:semver:1.0.1'
compileOnly 'net.thauvin.erik:semver:1.0.1'
annotationProcessor 'net.thauvin.erik:semver:1.1.0'
compileOnly 'net.thauvin.erik:semver:1.1.0'
}
```
@ -208,8 +208,8 @@ To install and run from [Kobalt](http://beust.com/kobalt/), add the following to
```gradle
dependencies {
apt("net.thauvin.erik:semver:1.0.1")
compileOnly("net.thauvin.erik:semver:1.0.1")
apt("net.thauvin.erik:semver:1.1.0")
compileOnly("net.thauvin.erik:semver:1.1.0")
}
```