Skip to content

Commit

Permalink
release: v2.0.10
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Akhterov <[email protected]>
  • Loading branch information
janaakhterov committed Aug 4, 2021
1 parent 78de3a4 commit 6926939
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## v2.0.10

### Added

Expand All @@ -21,8 +21,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* `*Id.toString()` no longer stringifies with checksums. Use `*Id.getChecksum()` to get the checksum that was parsed, or use `*Id.toStringWithChecksum(client)` to stringify with the correct checksum for that ID on the client's network.
* `*Id.validateChecksum()` to validate a checksum. Throws new `BadEntityIdException`
* `Client.[set|get]NetworkName()` declare which network this client is connected to, for purposes of checksum validation.
* `CustomFixedFee.[set|get]HbarAmount()` makes this fixed fee an Hbar fee of the specified amount
* `CustomFixedFee.setDenominatingTokenToSameToken()` this fixed fee will be charged in the same token.
* `CustomFixedFee.[set|get]HbarAmount()` makes this fixed fee an Hbar fee of the specified amount
* `CustomFixedFee.setDenominatingTokenToSameToken()` this fixed fee will be charged in the same token.

### Deprecated

* `*Id.validate()` use `*Id.validateChecksum()` instead

## v2.0.9

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ Select _one_ of the following depending on your target platform.

```groovy
// Android, Corda DJVM, Java 7+
implementation 'com.hedera.hashgraph:sdk-jdk7:2.0.9'
implementation 'com.hedera.hashgraph:sdk-jdk7:2.0.10'
// Java 9+, Kotlin
implementation 'com.hedera.hashgraph:sdk:2.0.9'
implementation 'com.hedera.hashgraph:sdk:2.0.10'
```

Select _one_ of the following to provide the gRPC implementation.
Expand Down Expand Up @@ -61,14 +61,14 @@ Select _one_ of the following depending on your target platform.
<dependency>
<groupId>com.hedera.hashgraph</groupId>
<artifactId>sdk-jdk7</artifactId>
<version>2.0.9</version>
<version>2.0.10</version>
</dependency>

<!-- Java 9+, Kotlin -->
<dependency>
<groupId>com.hedera.hashgraph</groupId>
<artifactId>sdk</artifactId>
<version>2.0.9</version>
<version>2.0.10</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "com.hedera.hashgraph"
version = "2.0.9"
version = "2.0.10"
description = "Hedera™ Hashgraph SDK for Java"

configurations {
Expand Down

0 comments on commit 6926939

Please sign in to comment.