Version 0.9.4-beta

This commit is contained in:
Erik C. Thauvin 2016-01-28 17:37:36 -08:00
parent 8d6d840efb
commit 7bfed925e3
7 changed files with 19 additions and 19 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.3-beta</version>
<version>0.9.4-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.3-beta'
compile 'net.thauvin.erik:semver:0.9.4-beta'
}
```
@ -161,11 +161,11 @@ Then add the following to the `build.gradle` file:
```gradle
dependencies {
compile 'net.thauvin.erik:semver:0.9.3-beta'
compile 'net.thauvin.erik:semver:0.9.4-beta'
}
annotationProcessor {
library 'net.thauvin.erik:semver:0.9.3-beta'
library 'net.thauvin.erik:semver:0.9.4-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.3-beta")
apt("net.thauvin.erik:semver:0.9.4-beta")
}
```