From 95b5c7bb1d31ea17fc76c40f33c26b02a5550b25 Mon Sep 17 00:00:00 2001 From: Igor Artamonov Date: Mon, 17 Aug 2020 12:51:43 -0400 Subject: [PATCH] solution: release v0.3.0 --- README.adoc | 8 ++++---- build.gradle | 2 +- docs/03-rpc-client.adoc | 2 +- examples/common.gradle | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.adoc b/README.adoc index f9033e3..e54342e 100644 --- a/README.adoc +++ b/README.adoc @@ -1,6 +1,6 @@ = PolkaJ - Polkadot Java Client -:lib-version: 0.2.3 -:lib-version-dev: 0.3.0-SNAPSHOT +:lib-version: 0.3.0 +:lib-version-dev: 0.4.0-SNAPSHOT image:https://github.com/emeraldpay/polkaj/workflows/Tests/badge.svg["Unit Tests"] image:https://codecov.io/gh/emeraldpay/polkaj/branch/master/graph/badge.svg["Coverage",link="https://codecov.io/gh/emeraldpay/polkaj"] @@ -19,14 +19,14 @@ WARNING: UNDER DEVELOPMENT - `io.emeraldpay.polkaj:polkaj-scale:{lib-version}` - SCALE codec implementation - `io.emeraldpay.polkaj:polkaj-scale-types:{lib-version}` - SCALE mapping for standard Polkadot types -- `io.emeraldpay.polkaj:polkaj-schnorrkel:{lib-version-dev}` - Schnorrkel for Java +- `io.emeraldpay.polkaj:polkaj-schnorrkel:{lib-version}` - Schnorrkel for Java - `io.emeraldpay.polkaj:polkaj-ss58:{lib-version}` - SS58 codec to encode/decode addresses and pubkeys - `io.emeraldpay.polkaj:polkaj-common-types:{lib-version}` - common types (Address, DotAmount, Hash256, etc) - `io.emeraldpay.polkaj:polkaj-json-types:{lib-version}` - JSON RPC mapping to Java classes - `io.emeraldpay.polkaj:polkaj-api-base:{lib-version}` - RPC base classes - `io.emeraldpay.polkaj:polkaj-api-http:{lib-version}` - JSON RPC HTTP client - `io.emeraldpay.polkaj:polkaj-api-ws:{lib-version}` - JSON RPC WebSocket client -- `io.emeraldpay.polkaj:polkaj-tx:{lib-version-dev}` - Storage access and Extrinsics +- `io.emeraldpay.polkaj:polkaj-tx:{lib-version}` - Storage access and Extrinsics == Usage diff --git a/build.gradle b/build.gradle index 74ba8ea..6a00c25 100644 --- a/build.gradle +++ b/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'jacoco' allprojects { group = 'io.emeraldpay.polkaj' - version = "0.3.0-SNAPSHOT" + version = "0.3.0" repositories { mavenLocal() diff --git a/docs/03-rpc-client.adoc b/docs/03-rpc-client.adoc index 9ecb848..f97ee06 100644 --- a/docs/03-rpc-client.adoc +++ b/docs/03-rpc-client.adoc @@ -1,5 +1,5 @@ = RPC Client -:lib-version: 0.2.0 +:lib-version: 0.3.0 :examples-dir: ../examples :examples-encoding: {examples-dir}/rpc/src/main/java diff --git a/examples/common.gradle b/examples/common.gradle index a38491f..c4963e7 100644 --- a/examples/common.gradle +++ b/examples/common.gradle @@ -2,7 +2,7 @@ // Common config for Polkaj Examples // ext { - polkajVersion = "0.3.0-SNAPSHOT" + polkajVersion = "0.3.0" } repositories {