Skip to content

Commit

Permalink
Version 1.0.4. Closes #8 via e1891c4
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Jul 26, 2019
1 parent 062758a commit c32a7eb
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Change Log

## [1.0.4](https://github.com/ethauvin/semver-gradle/tree/1.0.4) (2019-07-26)
[Full Changelog](https://github.com/ethauvin/semver-gradle/compare/1.0.3-beta...1.0.4)

**Implemented enhancements:**

- Access semver version properties in Gradle build file. [\#8](https://github.com/ethauvin/semver-gradle/issues/8)

## [1.0.3-beta](https://github.com/ethauvin/semver-gradle/tree/1.0.3-beta) (2019-07-25)
[Full Changelog](https://github.com/ethauvin/semver-gradle/compare/1.0.2...1.0.3-beta)

**Closed issues:**

- Thanks! [\#7](https://github.com/ethauvin/semver-gradle/issues/7)

## [1.0.2](https://github.com/ethauvin/semver-gradle/tree/1.0.2) (2019-05-24)
[Full Changelog](https://github.com/ethauvin/semver-gradle/compare/1.0.1...1.0.2)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
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
@@ -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
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
@@ -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
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
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 c32a7eb

Please sign in to comment.