Skip to content

Commit

Permalink
release: v2.33.0 (#1831)
Browse files Browse the repository at this point in the history
Signed-off-by: Nikita Lebedev <[email protected]>
  • Loading branch information
thenswan authored May 31, 2024
1 parent f98bf9c commit 0d515a8
Show file tree
Hide file tree
Showing 6 changed files with 173 additions and 126 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ 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).

## 2.33.0

### Added
- add `decimal` field to `TokenRelationship` class

### Changed
- `AccountBalanceQuery`, `AccountInfoQuery`, and `ContractInfoQuery` get part of the data from the Mirror Node REST API (HIP-367)
- improved documentation in repository
- updated protobufs

### Fixed
- undeprecate `AccountBalance.tokens`, `AccountBalance.tokenDecimals`, `AccountInfo.tokenRelationships`, `ContractInfo.tokenRelationships`


### Deprecated
- `TokenRelationship.symbol`, use `TokenInfo.symbol` instead
- `AccountId.populateAccountNumAsync`, use `AccountId.populateAccountNum` instead
- `AccountId.populateAccountEvmAddressAsync`, use `AccountId.populateAccountEvmAddress` instead
- `ContractId.populateContractNumAsync`, use `ContractId.populateContractNum` instead

## 2.32.0

### Added
Expand Down
4 changes: 2 additions & 2 deletions docs/java-app/java-app-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ To get started with a Java project, you'll need to add the following **three** d

_Gradle:_
```groovy
implementation 'com.hedera.hashgraph:sdk:2.32.0'
implementation 'com.hedera.hashgraph:sdk:2.33.0'
```

_Maven:_
```xml
<dependency>
<groupId>com.hedera.hashgraph</groupId>
<artifactId>sdk</artifactId>
<version>2.32.0</version>
<version>2.33.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion example-android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

implementation 'com.hedera.hashgraph:sdk:2.32.0'
implementation 'com.hedera.hashgraph:sdk:2.33.0'

implementation 'org.slf4j:slf4j-simple:2.0.7'
implementation 'io.grpc:grpc-okhttp:1.49.2'
Expand Down
Loading

0 comments on commit 0d515a8

Please sign in to comment.