Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sink772 committed Sep 11, 2020
1 parent 05bd8b2 commit 7235428
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.0.0 - Sep 11, 2020
- There are no special features or incompatibilities related to the version number change. This is just a numbering change to drop the beta tag.
- Remove unused field and method of `jsonrpc.Response`
- Add `Address.getBody()` method

## 0.9.15 - Dec 9, 2019
- Fix the wrong handling of null and empty bytes when `RpcObject` is serialized/deserialized
- Define `RpcValue.NULL` for null value
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2018-2019 ICON Foundation
Copyright 2018 ICON Foundation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This document is focused on how to use the SDK properly. For the detailed API sp

## Version

0.9.15 (beta)
1.0.0

## Prerequisite

Expand All @@ -27,15 +27,15 @@ Download [the latest JAR](https://search.maven.org/search?q=g:foundation.icon%20
<dependency>
<groupId>foundation.icon</groupId>
<artifactId>icon-sdk</artifactId>
<version>0.9.15</version>
<version>1.0.0</version>
</dependency>
```

or Gradle:

```groovy
dependencies {
implementation 'foundation.icon:icon-sdk:0.9.15'
implementation 'foundation.icon:icon-sdk:1.0.0'
}
```

Expand Down Expand Up @@ -343,11 +343,11 @@ Person memberPerson = iconService.call(call).execute();
- [ICON JSON-RPC API v3]
- [ICON Network]

[Quick Start]: https://github.com/icon-project/icon-sdk-java/tree/master/quickstart
[ICON JSON-RPC API v3]: https://github.com/icon-project/icon-rpc-server/blob/master/docs/icon-json-rpc-v3.md
[ICON Network]: https://github.com/icon-project/icon-project.github.io/blob/master/docs/icon_network.md
[Quick Start]: quickstart
[ICON JSON-RPC API v3]: https://www.icondev.io/docs/icon-json-rpc-v3
[ICON Network]: https://www.icondev.io/docs/the-icon-network


## Licenses
## License

This project follows the Apache 2.0 License. Please refer to [LICENSE](https://www.apache.org/licenses/LICENSE-2.0) for details.
This project is available under the [Apache License, Version 2.0](LICENSE).
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#

GROUP=foundation.icon
VERSION_NAME=0.9.15
VERSION_NAME=1.0.0

BINTRAY_USER_ORG=icon
BINTRAY_REPO=icon-sdk
Expand Down

0 comments on commit 7235428

Please sign in to comment.