Skip to content

Commit

Permalink
Version 1.0.4. Closes #8. Implemented by e1891c4
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jul 26, 2019
1 parent 062758a commit 024f3d4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
kotlin("jvm") version "1.3.31"
}

version = "1.0.3-beta"
version = "1.0.4"
group = "net.thauvin.erik.gradle"

var github = "https://github.com/ethauvin/semver-gradle"
Expand Down
2 changes: 1 addition & 1 deletion examples/annotation-processor/java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'net.thauvin.erik.gradle.semver' version '1.0.2'
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
id 'com.github.ben-manes.versions' version '0.21.0'
}

Expand Down
2 changes: 1 addition & 1 deletion examples/annotation-processor/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
kotlin("jvm").version("1.3.41")
application
id("org.jetbrains.kotlin.kapt").version("1.3.41")
id("net.thauvin.erik.gradle.semver").version("1.0.2")
id("net.thauvin.erik.gradle.semver").version("1.0.4")
id("com.github.ben-manes.versions").version("0.21.0")
}

Expand Down
2 changes: 1 addition & 1 deletion examples/java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'net.thauvin.erik.gradle.semver' version '1.0.2'
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
id 'com.github.ben-manes.versions' version '0.21.0'
}

Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import java.time.format.DateTimeFormatter
plugins {
kotlin("jvm").version("1.3.41")
application
id("net.thauvin.erik.gradle.semver").version("1.0.2")
id("net.thauvin.erik.gradle.semver").version("1.0.4")
id("com.github.ben-manes.versions").version("0.21.0")
}

Expand Down
2 changes: 1 addition & 1 deletion examples/test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "net.thauvin.erik.gradle:semver:1.0.3-beta"
classpath "net.thauvin.erik.gradle:semver:1.0.4"
}
}

Expand Down

0 comments on commit 024f3d4

Please sign in to comment.