Skip to content

Commit

Permalink
Release 1.0.3 (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptoBeliever authored Dec 8, 2022
1 parent 56d3462 commit 244bb6c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 16 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file.

The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [1.0.3] - 8-Dec-2022
| Package | Version | Link |
|-------------------|---------|-------------------------------------------------------------------------------|
| SDK OkHttp | v1.0.3 | https://repo.maven.apache.org/maven2/io/nem/symbol-sdk-okhttp-client |
| SDK Vertx | v1.0.3 | https://repo.maven.apache.org/maven2/io/nem/symbol-sdk-vertx-client |
| Catbuffer Library | v0.1.5 | https://repo.maven.apache.org/maven2/io/nem/catbuffer-java |
| Client OkHttp | v1.0.3 | https://repo.maven.apache.org/maven2/io/nem/symbol-openapi-okhttp-gson-client |
| Client Vertx | v1.0.3 | https://repo.maven.apache.org/maven2/io/nem/symbol-openapi-vertx-client/ |

- upgrade rest openapi version to 1.0.3
- keep only mainnet and testnet network types
- catbuffer - add a revokable flag to mosaic and revocation transaction type
- sdk - add revokable mosaic and revocation transaction support
- upgrade Catbuffer to v0.1.5
- add a revokable flag to mosaic and revocation transaction type and tests
- correct e2e tests to make them pass

## [1.0.2] - 1-Nov-2022
| Package | Version | Link |
|-------------------|---------|-------------------------------------------------------------------------------|
Expand Down
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Each SDK user can depend on the best library for its need (example, ``symbol-sdk
<dependency>
<groupId>io.nem</groupId>
<artifactId>symbol-sdk-vertx-client</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>
```

Expand All @@ -33,25 +33,25 @@ OR
<dependency>
<groupId>io.nem</groupId>
<artifactId>symbol-sdk-okhttp-client</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>
```

### Gradle

```compile 'io.nem:symbol-sdk-vertx-client:1.0.2```
```compile 'io.nem:symbol-sdk-vertx-client:1.0.3```

OR

```compile 'io.nem:symbol-sdk-okhttp-client:1.0.2```
```compile 'io.nem:symbol-sdk-okhttp-client:1.0.3```

### SBT

```libraryDependencies += "io.nem" % "symbol-sdk-vertx-client" % "1.0.2"```
```libraryDependencies += "io.nem" % "symbol-sdk-vertx-client" % "1.0.3"```

OR

```libraryDependencies += "io.nem" % "symbol-sdk-okhttp-client" % "1.0.2"```
```libraryDependencies += "io.nem" % "symbol-sdk-okhttp-client" % "1.0.3"```

## Usage

Expand Down Expand Up @@ -83,7 +83,7 @@ Use the following available resources to get help:

- [Symbol Documentation][docs]
- [Symbol SDK Java Reference][sdk-ref]
- Join the community [slack group (#sig-api)][slack]
- Join the community [discord group (#sdk-general)][discord]
- If you found a bug, [open a new issue][issues]

## Contributing
Expand All @@ -98,10 +98,10 @@ You can also find useful notes for developers under our documentation [guideline
Copyright (c) 2018-present NEM
Licensed under the [Apache License 2.0](LICENSE)

[self]: https://github.com/nemtech/symbol-sdk-java
[docs]: http://nemtech.github.io/getting-started/setup-workstation.html
[issues]: https://github.com/nemtech/symbol-sdk-java/issues
[sdk-ref]: https://nemtech.github.io/references/java-sdk.html
[symbol-openapi-generator]: https://github.com/nemtech/symbol-openapi-generator
[guidelines]: https://nemtech.github.io/contribute/contributing.html#sdk
[slack]: https://join.slack.com/t/nem2/shared_invite/enQtMzY4MDc2NTg0ODgyLWZmZWRiMjViYTVhZjEzOTA0MzUyMTA1NTA5OWQ0MWUzNTA4NjM5OTJhOGViOTBhNjkxYWVhMWRiZDRkOTE0YmU
[self]: https://github.com/symbol/sdk-java
[docs]: https://docs.symbol.dev/getting-started/setup-workstation.html
[issues]: https://github.com/symbol/sdk-java/issues
[sdk-ref]: https://docs.symbol.dev/references/java-sdk.html
[symbol-openapi-generator]: https://github.com/symbol/symbol-openapi-generator
[guidelines]: https://docs.symbol.dev/contribute/contributing.html#sdk
[discord]: https://discord.com/invite/xymcity
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ext {
vertxVersion = "3.5.0"
rxjavaVersion = "2.1.7"
junitVersion = "5.9.0"
catbufferVersion = "0.1.4"
catbufferVersion = "0.1.5"
restApiVersion = "1.0.3"
jackson_version = "2.9.9"
jackson_databind_version = "2.9.9"
Expand Down
2 changes: 1 addition & 1 deletion catbuffer-generators/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.4
0.1.5

0 comments on commit 244bb6c

Please sign in to comment.