From 4b98c00585d6f7ac324ec927224bdcf5e9dd3840 Mon Sep 17 00:00:00 2001 From: Guardiola31337 Date: Sat, 16 Sep 2017 13:17:02 +0200 Subject: [PATCH] release 0.3.8, bump version name to 0.3.9-SNAPSHOT and fix the archives base name so it takes the pom artifact id instead of the project name --- README.md | 2 +- build.gradle | 2 +- gradle.properties | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dba98eb984e..f886cbec240 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Add the dependency into project `build.gradle` ```groovy dependencies { - compile 'io.kategory:kategory:0.3.5' + compile 'io.kategory:kategory:0.3.8' } ``` diff --git a/build.gradle b/build.gradle index e35e86c9b1d..02bca0c6963 100644 --- a/build.gradle +++ b/build.gradle @@ -62,7 +62,7 @@ subprojects { project -> apply plugin: 'kotlin' apply plugin: 'jacoco' - archivesBaseName = project.name + archivesBaseName = POM_ARTIFACT_ID jacoco { toolVersion '0.7.8' diff --git a/gradle.properties b/gradle.properties index a21ee0c81d0..f3789d3482d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # Package definitions GROUP=io.kategory -VERSION_NAME=0.3.6-SNAPSHOT +VERSION_NAME=0.3.9-SNAPSHOT # Gradle options org.gradle.jvmargs=-Xmx2048m