Skip to content

Commit

Permalink
release: v2.48.0 (#2214)
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Ivanov <[email protected]>
  • Loading branch information
0xivanov authored Feb 4, 2025
1 parent 49eb915 commit c7b3592
Show file tree
Hide file tree
Showing 9 changed files with 746 additions and 168 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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.48.0

### Changed

- New query payment is generated when the SDK receives status `BUSY`.

### Added

- Retry mechanism for resubmitting the transaction in case the SDK receives status `THROTTLED_AT_CONSENSUS` in the transaction receipt.

## 2.47.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion docs/android-app/android-app-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To get started with an Android project, you'll need to add the following **two**
1. **Hedera™ Java SDK:**

```groovy
implementation 'com.hedera.hashgraph:sdk:2.47.0'
implementation 'com.hedera.hashgraph:sdk:2.48.0'
```

2. **gRPC implementation:**
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 @@ -9,7 +9,7 @@ To get started with a Java project, you'll need to add the following **three** d
_Gradle:_

```groovy
implementation 'com.hedera.hashgraph:sdk:2.47.0'
implementation 'com.hedera.hashgraph:sdk:2.48.0'
```

_Maven:_
Expand All @@ -18,7 +18,7 @@ _Maven:_
<dependency>
<groupId>com.hedera.hashgraph</groupId>
<artifactId>sdk</artifactId>
<version>2.47.0</version>
<version>2.48.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion example-android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
implementation(platform("org.hiero:hiero-dependency-versions"))
// ---------------------------------------------

implementation("com.hedera.hashgraph:sdk:2.47.0")
implementation("com.hedera.hashgraph:sdk:2.48.0")

implementation("com.google.android.material:material:1.11.0")

Expand Down
6 changes: 3 additions & 3 deletions examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ dependencyAnalysis {
dependencies.constraints {
implementation("com.google.guava:guava:33.3.1-android")
implementation("io.github.cdimascio:dotenv-java:3.0.2")
implementation("com.hedera.hashgraph:sdk:2.47.0")
implementation("com.hedera.hashgraph:sdk-full:2.47.0")
implementation("com.hedera.hashgraph:sdk:2.48.0")
implementation("com.hedera.hashgraph:sdk-full:2.48.0")
}

tasks.register<RunAllExample>("runAllExamples") {
Expand Down Expand Up @@ -103,7 +103,7 @@ listOf("mainnet", "testnet", "previewnet").forEach { network ->
environment("HEDERA_NETWORK", network)
doLast {
val binFile = File(workingDir, "address-book.proto.bin")
val target = File(workingDir, "../sdk-java/src/main/resources/addressbook/$network.pb")
val target = File(workingDir, "../sdk/src/main/resources/addressbook/$network.pb")
binFile.copyTo(target, overwrite = true)
}
}
Expand Down
224 changes: 134 additions & 90 deletions sdk/src/main/resources/addressbook/mainnet.pb

Large diffs are not rendered by default.

332 changes: 297 additions & 35 deletions sdk/src/main/resources/addressbook/previewnet.pb

Large diffs are not rendered by default.

332 changes: 297 additions & 35 deletions sdk/src/main/resources/addressbook/testnet.pb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.47.0
2.48.0

0 comments on commit c7b3592

Please sign in to comment.