Skip to content

Commit 95b5c7b

Browse files
committed
solution: release v0.3.0
1 parent b607b6a commit 95b5c7b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= PolkaJ - Polkadot Java Client
2-
:lib-version: 0.2.3
3-
:lib-version-dev: 0.3.0-SNAPSHOT
2+
:lib-version: 0.3.0
3+
:lib-version-dev: 0.4.0-SNAPSHOT
44

55
image:https://github.com/emeraldpay/polkaj/workflows/Tests/badge.svg["Unit Tests"]
66
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
1919

2020
- `io.emeraldpay.polkaj:polkaj-scale:{lib-version}` - SCALE codec implementation
2121
- `io.emeraldpay.polkaj:polkaj-scale-types:{lib-version}` - SCALE mapping for standard Polkadot types
22-
- `io.emeraldpay.polkaj:polkaj-schnorrkel:{lib-version-dev}` - Schnorrkel for Java
22+
- `io.emeraldpay.polkaj:polkaj-schnorrkel:{lib-version}` - Schnorrkel for Java
2323
- `io.emeraldpay.polkaj:polkaj-ss58:{lib-version}` - SS58 codec to encode/decode addresses and pubkeys
2424
- `io.emeraldpay.polkaj:polkaj-common-types:{lib-version}` - common types (Address, DotAmount, Hash256, etc)
2525
- `io.emeraldpay.polkaj:polkaj-json-types:{lib-version}` - JSON RPC mapping to Java classes
2626
- `io.emeraldpay.polkaj:polkaj-api-base:{lib-version}` - RPC base classes
2727
- `io.emeraldpay.polkaj:polkaj-api-http:{lib-version}` - JSON RPC HTTP client
2828
- `io.emeraldpay.polkaj:polkaj-api-ws:{lib-version}` - JSON RPC WebSocket client
29-
- `io.emeraldpay.polkaj:polkaj-tx:{lib-version-dev}` - Storage access and Extrinsics
29+
- `io.emeraldpay.polkaj:polkaj-tx:{lib-version}` - Storage access and Extrinsics
3030

3131
== Usage
3232

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ apply plugin: 'jacoco'
1818

1919
allprojects {
2020
group = 'io.emeraldpay.polkaj'
21-
version = "0.3.0-SNAPSHOT"
21+
version = "0.3.0"
2222

2323
repositories {
2424
mavenLocal()

docs/03-rpc-client.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= RPC Client
2-
:lib-version: 0.2.0
2+
:lib-version: 0.3.0
33
:examples-dir: ../examples
44
:examples-encoding: {examples-dir}/rpc/src/main/java
55

examples/common.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Common config for Polkaj Examples
33
//
44
ext {
5-
polkajVersion = "0.3.0-SNAPSHOT"
5+
polkajVersion = "0.3.0"
66
}
77

88
repositories {

0 commit comments

Comments
 (0)