diff --git a/README.html b/README.html index a2de79a..628cf27 100644 --- a/README.html +++ b/README.html @@ -107,7 +107,7 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf VERSION The full version string. -1.0.0-alpha+001 +1.2.3-alpha+001 MAJOR @@ -117,12 +117,12 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf MINOR The minor version. -0 +2 PATCH The patch version. -0 +3 PRERELEASE @@ -341,13 +341,13 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf
<dependency>
     <groupId>net.thauvin.erik</groupId>
     <artifactId>semver</artifactId>
-    <version>1.0.0</version>
+    <version>1.0.1</version>
 </dependency>

Gradle

Class Generation

To install and run from Gradle, add the following to the build.gradle file:

dependencies {
-    compileOnly 'net.thauvin.erik:semver:1.0.0'
+    compileOnly 'net.thauvin.erik:semver:1.0.1'
 }

The GeneratedVersion class will be automatically created in the build/generated directory upon compiling.

Class & Source Generation

@@ -357,11 +357,11 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf }

Then add the following to the build.gradle file:

dependencies {
-    compileOnly 'net.thauvin.erik:semver:1.0.0'
+    compileOnly 'net.thauvin.erik:semver:1.0.1'
 }
 
 annotationProcessor {
-    library 'net.thauvin.erik:semver:1.0.0'
+    library 'net.thauvin.erik:semver:1.0.1'
     processor 'net.thauvin.erik.semver.VersionProcessor'
     // sourcesDir 'src/generated/java'
 }
@@ -375,8 +375,8 @@ compileJava {
 

Kobalt

To install and run from Kobalt, add the following to the Build.kt file:

dependencies {
-    apt("net.thauvin.erik:semver:1.0.0")
-    compileOnly("net.thauvin.erik:semver:1.0.0")
+    apt("net.thauvin.erik:semver:1.0.1")
+    compileOnly("net.thauvin.erik:semver:1.0.1")
 }

Please look at the Build.kt file in the example module directory for a sample.

Kotlin

diff --git a/README.md b/README.md index effe7df..6fee617 100644 --- a/README.md +++ b/README.md @@ -60,10 +60,10 @@ Field | Description | Example :--------------|:---------------------------------|:----------------- `PROJECT` | The project name, if any. | `MyProject` `BUILDDATE` | The build date. | [`java.util.Date`](https://docs.oracle.com/javase/8/docs/api/java/util/Date.html) -`VERSION` | The full version string. | `1.0.0-alpha+001` +`VERSION` | The full version string. | `1.2.3-alpha+001` `MAJOR` | The major version. | `1` -`MINOR` | The minor version. | `0` -`PATCH` | The patch version. | `0` +`MINOR` | The minor version. | `2` +`PATCH` | The patch version. | `3` `PRERELEASE` | The pre-release version, if any. | `alpha` `BUILDMETA` | The build metadata, if any. | `001` @@ -162,7 +162,7 @@ To install and run from [Maven](http://maven.apache.org/), configure an artifact net.thauvin.erik semver - 1.0.0 + 1.0.1 ``` @@ -174,7 +174,7 @@ To install and run from [Gradle](https://gradle.org/), add the following to the ```gradle dependencies { - compileOnly 'net.thauvin.erik:semver:1.0.0' + compileOnly 'net.thauvin.erik:semver:1.0.1' } ``` @@ -194,11 +194,11 @@ Then add the following to the `build.gradle` file: ```gradle dependencies { - compileOnly 'net.thauvin.erik:semver:1.0.0' + compileOnly 'net.thauvin.erik:semver:1.0.1' } annotationProcessor { - library 'net.thauvin.erik:semver:1.0.0' + library 'net.thauvin.erik:semver:1.0.1' processor 'net.thauvin.erik.semver.VersionProcessor' // sourcesDir 'src/generated/java' } @@ -219,8 +219,8 @@ To install and run from [Kobalt](http://beust.com/kobalt/), add the following to ```gradle dependencies { - apt("net.thauvin.erik:semver:1.0.0") - compileOnly("net.thauvin.erik:semver:1.0.0") + apt("net.thauvin.erik:semver:1.0.1") + compileOnly("net.thauvin.erik:semver:1.0.1") } ``` diff --git a/example/kobalt/src/Build.kt b/example/kobalt/src/Build.kt index 46eeb64..6b99e0a 100644 --- a/example/kobalt/src/Build.kt +++ b/example/kobalt/src/Build.kt @@ -41,7 +41,7 @@ val example = project { version = versionFor() val mainClassName = "net.thauvin.erik.semver.example.Example" - val processorJar = "net.thauvin.erik:semver:1.0.0" + val processorJar = "net.thauvin.erik:semver:1.0.1" dependencies { apt(processorJar)