diff --git a/README.html b/README.html index 73fc0a0..4f03c05 100644 --- a/README.html +++ b/README.html @@ -49,7 +49,7 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf
An annotation processor that automatically generates a GeneratedVersion
class containing the semantic version (major, minor, patch, etc.) that is read from a Properties
file or defined in the annotation.
This processor was inspired by Cédric Beust's version-processor.
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>semver</artifactId>
- <version>0.9.1-beta</version>
+ <version>0.9.2-beta</version>
</dependency>
To install and run from Gradle, add the following to the build.gradle
file:
dependencies {
- compile 'net.thauvin.erik:semver:0.9.1-beta'
+ compile 'net.thauvin.erik:semver:0.9.2-beta'
}
The GeneratedVersion
class will be automatically created in the build
directory upon compiling.
Then add the following to the build.gradle
file:
dependencies {
- compile 'net.thauvin.erik:semver:0.9.1-beta'
+ compile 'net.thauvin.erik:semver:0.9.2-beta'
}
annotationProcessor {
- library 'net.thauvin.erik:semver:0.9.1-beta'
+ library 'net.thauvin.erik:semver:0.9.2-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.1-beta")
+ apt("net.thauvin.erik:semver:0.9.2-beta")
}
Auto-Increment
Incrementing the version is best left to your favorite build system.
diff --git a/README.md b/README.md
index 0ad0127..97111f8 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.1-beta
+ 0.9.2-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.1-beta'
+ compile 'net.thauvin.erik:semver:0.9.2-beta'
}
```
@@ -161,11 +161,11 @@ Then add the following to the `build.gradle` file:
```gradle
dependencies {
- compile 'net.thauvin.erik:semver:0.9.1-beta'
+ compile 'net.thauvin.erik:semver:0.9.2-beta'
}
annotationProcessor {
- library 'net.thauvin.erik:semver:0.9.1-beta'
+ library 'net.thauvin.erik:semver:0.9.2-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.1-beta")
+ apt("net.thauvin.erik:semver:0.9.2-beta")
}
```
diff --git a/appveyor.yml b/appveyor.yml
index ce2cb43..0ee7361 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,5 @@
version: "{branch} {build}"
+skip_tags: true
build:
verbosity: detailed
diff --git a/example/build.gradle b/example/build.gradle
index f252bac..6bbaede 100644
--- a/example/build.gradle
+++ b/example/build.gradle
@@ -46,12 +46,12 @@ repositories {
}
dependencies {
- compile 'net.thauvin.erik:semver:+'
+ compile 'net.thauvin.erik:semver:0.9.2-beta'
}
annotationProcessor {
project.version = getVersion(isRelease)
- library 'net.thauvin.erik:semver:0.9.1-beta'
+ library 'net.thauvin.erik:semver:0.9.2-beta'
processor 'net.thauvin.erik.semver.VersionProcessor'
}
diff --git a/example/example.iml b/example/example.iml
index bbfd182..f5cbd7c 100644
--- a/example/example.iml
+++ b/example/example.iml
@@ -16,10 +16,6 @@
-
-
-
-