diff --git a/README.html b/README.html
index bf0e958..77983db 100644
--- a/README.html
+++ b/README.html
@@ -244,13 +244,13 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>semver</artifactId>
- <version>0.9.2-beta</version>
+ <version>0.9.3-beta</version>
</dependency>
Gradle
Class Generation
To install and run from Gradle, add the following to the build.gradle
file:
dependencies {
- compile 'net.thauvin.erik:semver:0.9.2-beta'
+ compile 'net.thauvin.erik:semver:0.9.3-beta'
}
The GeneratedVersion
class will be automatically created in the build
directory upon compiling.
Class & Source Generation
@@ -260,11 +260,11 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf
}
Then add the following to the build.gradle
file:
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'
}
@@ -278,7 +278,7 @@ compileJava {
Kobalt
To install and run from Kobalt, add the following to the Build.kt
file:
dependencies {
- apt("net.thauvin.erik:semver:0.9.2-beta")
+ apt("net.thauvin.erik:semver:0.9.3-beta")
}
Auto-Increment
Incrementing the version is best left to your favorite build system.
diff --git a/README.md b/README.md
index c7be86a..0e31a6f 100644
--- a/README.md
+++ b/README.md
@@ -129,7 +129,7 @@ To install and run from [Maven](http://maven.apache.org/), configure an artifact
net.thauvin.erik
semver
- 0.9.2-beta
+ 0.9.3-beta
```
@@ -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")
}
```
diff --git a/example/build.gradle b/example/build.gradle
index 72bda12..13bae17 100644
--- a/example/build.gradle
+++ b/example/build.gradle
@@ -47,13 +47,13 @@ repositories {
}
dependencies {
- compile 'net.thauvin.erik:semver:0.9.2-beta'
+ compile 'net.thauvin.erik:semver:0.9.3-beta'
}
annotationProcessor {
// Update version, increment on release.
project.version = getVersion(isRelease)
- library 'net.thauvin.erik:semver:0.9.2-beta'
+ library 'net.thauvin.erik:semver:0.9.3-beta'
processor 'net.thauvin.erik.semver.VersionProcessor'
}
diff --git a/example/example.iml b/example/example.iml
index f5cbd7c..afeb744 100644
--- a/example/example.iml
+++ b/example/example.iml
@@ -16,6 +16,10 @@
+
+
+
+