From 557fcfd05ff5c8fe6f78117d427358b5ae55eef9 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Tue, 26 Jan 2016 08:44:49 -0800 Subject: [PATCH] Version 0.9.2-beta --- README.html | 12 ++++++------ README.md | 10 +++++----- appveyor.yml | 1 + example/build.gradle | 4 ++-- example/example.iml | 4 ---- semver.ipr | 9 --------- version.properties | 4 ++-- 7 files changed, 16 insertions(+), 28 deletions(-) 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

Semantic Version Annotation Processor

-

License (3-Clause BSD) Dependency Status Build Status Maven Central Download

+

License (3-Clause BSD) Dependency Status Build Status Build status Maven Central Download

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.

Examples

@@ -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.1-beta</version>
+    <version>0.9.2-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.1-beta'
+    compile 'net.thauvin.erik:semver:0.9.2-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.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 @@ - - - -