From 803cd00f753bf2d8af2943a20521c51d5000813f Mon Sep 17 00:00:00 2001 From: Igor Artamonov Date: Fri, 8 May 2020 21:23:49 -0400 Subject: [PATCH] solution: release v0.1.0 --- README.adoc | 5 ++--- build.gradle | 2 +- examples/encoding/build.gradle | 6 +++--- examples/types/build.gradle | 6 +++--- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.adoc b/README.adoc index 7ad811d..416f178 100644 --- a/README.adoc +++ b/README.adoc @@ -1,5 +1,5 @@ = PolkaJ - Polkadot Java Client -:lib-version: 0.1.0-SNAPSHOT +:lib-version: 0.1.0 :lib-version-dev: 0.1.0-SNAPSHOT image:https://github.com/emeraldpay/polkaj/workflows/Tests/badge.svg["Unit Tests"] @@ -11,8 +11,7 @@ Java client library to use and access API of Polkadot based networks. WARNING: UNDER DEVELOPMENT - -- Latest Stable Version: NONE +- Latest Stable Version: {lib-version} - Latest Snapshot Version: {lib-version-dev} diff --git a/build.gradle b/build.gradle index 50a32cf..bbc7292 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'jacoco' allprojects { group = 'io.emeraldpay.polkaj' - version = "0.1.0-SNAPSHOT" + version = "0.1.0" repositories { mavenLocal() diff --git a/examples/encoding/build.gradle b/examples/encoding/build.gradle index 6dac62b..bd51c82 100644 --- a/examples/encoding/build.gradle +++ b/examples/encoding/build.gradle @@ -9,9 +9,9 @@ repositories { } dependencies { - implementation 'io.emeraldpay.pjc:scale:0.1.0-SNAPSHOT' - implementation 'io.emeraldpay.pjc:types:0.1.0-SNAPSHOT' - implementation 'io.emeraldpay.pjc:ss58:0.1.0-SNAPSHOT' + implementation 'io.emeraldpay.pjc:scale:0.1.0' + implementation 'io.emeraldpay.pjc:types:0.1.0' + implementation 'io.emeraldpay.pjc:ss58:0.1.0' implementation 'commons-codec:commons-codec:1.14' } diff --git a/examples/types/build.gradle b/examples/types/build.gradle index eed2002..4126c46 100644 --- a/examples/types/build.gradle +++ b/examples/types/build.gradle @@ -9,9 +9,9 @@ repositories { } dependencies { - implementation 'io.emeraldpay.pjc:scale:0.1.0-SNAPSHOT' - implementation 'io.emeraldpay.pjc:types:0.1.0-SNAPSHOT' - implementation 'io.emeraldpay.pjc:ss58:0.1.0-SNAPSHOT' + implementation 'io.emeraldpay.pjc:scale:0.1.0' + implementation 'io.emeraldpay.pjc:types:0.1.0' + implementation 'io.emeraldpay.pjc:ss58:0.1.0' implementation 'commons-codec:commons-codec:1.14' }