Version 1.0.4. Closes #8 via e1891c47af

This commit is contained in:
Erik C. Thauvin 2019-07-26 12:36:22 -07:00
parent 062758a5f0
commit c32a7ebdec
7 changed files with 20 additions and 6 deletions

View file

@ -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)

View file

@ -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"

View file

@ -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'
}

View file

@ -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")
}

View file

@ -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'
}

View file

@ -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")
}

View file

@ -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"
}
}