Skip to content

Commit 289ad79

Browse files
Prepare Java Light Client v0.5.0 release (#1261)
* Set LC release version to 0.5.0 * Change EJB version from 0.9.0 to 0.9.0-rc2 * Update the project documents Co-authored-by: Dmitry Timofeev <[email protected]>
1 parent d47ab89 commit 289ad79

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

exonum-java-binding/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ configure a network of nodes and run your services in it.
1010

1111
For more information see the relevant documentation on the tool:
1212
- [User Guide](https://exonum.com/doc/version/0.13-rc.2/get-started/java-binding/)
13-
- [Javadocs](https://exonum.com/doc/api/java-binding/0.9.0-rc1/index.html)
13+
- [Javadocs](https://exonum.com/doc/api/java-binding/0.9.0-rc2/index.html)
1414
- [Cryptocurrency Example Service](cryptocurrency-demo)
1515

1616
## License

exonum-java-binding/core/rust/exonum-java/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ configure a network of nodes and run your services in it.
88

99
For more information see the relevant documentation on the tool:
1010
- [User Guide](https://exonum.com/doc/version/0.13-rc.2/get-started/java-binding/)
11-
- [Javadocs](https://exonum.com/doc/api/java-binding/0.9.0-rc1/index.html)
11+
- [Javadocs](https://exonum.com/doc/api/java-binding/0.9.0-rc2/index.html)
1212

1313
# License
1414

exonum-java-binding/cryptocurrency-demo/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ $ python3 -m exonum_launcher -i cryptocurrency-demo.yml
5454

5555
### 🛑
5656

57-
*Frontend has not been updated to DS yet as of 0.9.0-rc1.
57+
*Frontend has not been updated to DS yet as of 0.9.0-rc2.
5858
Skip the subsequent instructions.*
5959

6060
---

exonum-light-client/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1515

1616
## Unreleased
1717

18+
## 0.5.0 — 2019-12-23
19+
20+
The new release of the light client brings support for dynamic services.
21+
22+
### Versions Support
23+
- Exonum version, 0.13
24+
- Exonum Java Binding version, 0.9
25+
1826
### Added
27+
- Java 13 support.
1928
- `ExonumClient#findServiceInfo(String)` to retrieve a service id by its
2029
name and `ExonumClient#getServiceInfoList` to retrieve the list of all
2130
started services - their names and ids. (#1247)
@@ -96,4 +105,3 @@ This release brings:
96105

97106
[system-api-public]: https://exonum.com/doc/version/0.12/advanced/node-management/#public-endpoints
98107
[explorer-api]: https://exonum.com/doc/version/0.12/advanced/node-management/#explorer-api-endpoints
99-

exonum-light-client/README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ The following table shows versions compatibility:
2929

3030
| Light Client | Exonum | Exonum Java |
3131
|--------------|--------|-------------|
32+
| 0.5.0 | 0.13.* | 0.9.* |
3233
| 0.4.0 | 0.12.* | 0.8.0 |
3334
| 0.3.0 | 0.11.* | 0.6.0-0.7.0 |
3435
| 0.2.0 | 0.11.* | 0.6.0 |
@@ -44,12 +45,12 @@ If you are using Maven, add this to your _pom.xml_ file
4445
<dependency>
4546
<groupId>com.exonum.client</groupId>
4647
<artifactId>exonum-light-client</artifactId>
47-
<version>0.4.0</version>
48+
<version>0.5.0</version>
4849
</dependency>
4950
```
5051
If you are using Gradle, add this to your dependencies
5152
```Groovy
52-
compile 'com.exonum.client:exonum-light-client:0.4.0'
53+
compile 'com.exonum.client:exonum-light-client:0.5.0'
5354
```
5455

5556
## Examples
@@ -151,9 +152,9 @@ which is required for the client.
151152
Apache 2.0 - see [LICENSE](../LICENSE) for more information.
152153

153154
[exonum]: https://github.com/exonum/exonum
154-
[ejb-documentation]: https://exonum.com/doc/api/java-binding/0.8.0/index.html
155-
[exonum-tx-message-builder]: https://exonum.com/doc/api/java-binding/0.8.0/com/exonum/binding/common/message/TransactionMessage.Builder.html
155+
[ejb-documentation]: https://exonum.com/doc/api/java-binding/0.9.0-rc2/index.html
156+
[exonum-tx-message-builder]: https://exonum.com/doc/api/java-binding/0.9.0-rc2/com/exonum/binding/common/message/TransactionMessage.Builder.html
156157
[protobuf]: https://developers.google.com/protocol-buffers/docs/proto3
157-
[standard-serializers]: https://exonum.com/doc/api/java-binding/0.8.0/com/exonum/binding/common/serialization/StandardSerializers.html
158+
[standard-serializers]: https://exonum.com/doc/api/java-binding/0.9.0-rc2/com/exonum/binding/common/serialization/StandardSerializers.html
158159
[send-tx-it]: ./src/test/java/com/exonum/client/ExonumHttpClientIntegrationTest.java
159-
[exonum-client]: https://exonum.com/doc/api/java-light-client/0.4.0/com/exonum/client/ExonumClient.html
160+
[exonum-client]: https://exonum.com/doc/api/java-light-client/0.5.0/com/exonum/client/ExonumClient.html

0 commit comments

Comments
 (0)