Version 0.9.3-beta

This commit is contained in:
Erik C. Thauvin 2016-01-27 19:12:15 -08:00
parent 703362c2b3
commit b1b72d6051
7 changed files with 123 additions and 110 deletions

View file

@ -129,7 +129,7 @@ To install and run from [Maven](http://maven.apache.org/), configure an artifact
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>semver</artifactId>
<version>0.9.2-beta</version>
<version>0.9.3-beta</version>
</dependency>
```
@ -141,7 +141,7 @@ To install and run from [Gradle](https://gradle.org/), add the following to the
```gradle
dependencies {
compile 'net.thauvin.erik:semver:0.9.2-beta'
compile 'net.thauvin.erik:semver:0.9.3-beta'
}
```
@ -161,11 +161,11 @@ Then add the following to the `build.gradle` file:
```gradle
dependencies {
compile 'net.thauvin.erik:semver:0.9.2-beta'
compile 'net.thauvin.erik:semver:0.9.3-beta'
}
annotationProcessor {
library 'net.thauvin.erik:semver:0.9.2-beta'
library 'net.thauvin.erik:semver:0.9.3-beta'
processor 'net.thauvin.erik.semver.VersionProcessor'
// sourcesDir 'src/generated/java'
}
@ -186,7 +186,7 @@ To install and run from [Kobalt](http://beust.com/kobalt/), add the following to
```gradle
dependencies {
apt("net.thauvin.erik:semver:0.9.2-beta")
apt("net.thauvin.erik:semver:0.9.3-beta")
}
```