Skip to content

Commit

Permalink
solution: release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
splix committed Jun 8, 2020
1 parent 41b1148 commit a2c92dd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= PolkaJ - Polkadot Java Client
:lib-version: 0.1.0
:lib-version-dev: 0.2.0-SNAPSHOT
:lib-version: 0.2.0
:lib-version-dev: 0.2.0

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"]
Expand All @@ -18,13 +18,13 @@ WARNING: UNDER DEVELOPMENT
== Modules

- `io.emeraldpay.polkaj:polkaj-scale:{lib-version}` - SCALE codec implementation
- `io.emeraldpay.polkaj:polkaj-scale-types:{lib-version-dev}` - SCALE mapping for standard Polkadot types
- `io.emeraldpay.polkaj:polkaj-scale-types:{lib-version}` - SCALE mapping for standard Polkadot types
- `io.emeraldpay.polkaj:polkaj-ss58:{lib-version}` - SS58 codec to encode/decode addresses and pubkeys
- `io.emeraldpay.polkaj:polkaj-common-types:{lib-version-dev}` - common types (Address, DotAmount, Hash256, etc)
- `io.emeraldpay.polkaj:polkaj-json-types:{lib-version-dev}` - JSON RPC mapping to Java classes
- `io.emeraldpay.polkaj:polkaj-api-base:{lib-version-dev}` - RPC base classes
- `io.emeraldpay.polkaj:polkaj-api-http:{lib-version-dev}` - JSON RPC HTTP client
- `io.emeraldpay.polkaj:polkaj-api-ws:{lib-version-dev}` - JSON RPC WebSocket client
- `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

== Usage

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apply plugin: 'jacoco'

allprojects {
group = 'io.emeraldpay.polkaj'
version = "0.2.0-SNAPSHOT"
version = "0.2.0"

repositories {
mavenLocal()
Expand Down
2 changes: 1 addition & 1 deletion docs/03-rpc-client.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= RPC Client
:lib-version: 0.2.0-SNAPSHOT
:lib-version: 0.2.0
:examples-dir: ../examples
:examples-encoding: {examples-dir}/rpc/src/main/java

Expand Down
2 changes: 1 addition & 1 deletion examples/common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
// Common config for Polkaj Examples
//
ext {
polkajVersion = "0.2.0-SNAPSHOT"
polkajVersion = "0.2.0"
}

0 comments on commit a2c92dd

Please sign in to comment.