diff --git a/CHANGELOG.md b/CHANGELOG.md index c5cc7b991..373a9cf91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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.41.0 + +### Fixed +- Android runtime errors for API levels 26-33. + ## 2.40.0 ### Added diff --git a/docs/android-app/android-app-quickstart.md b/docs/android-app/android-app-quickstart.md index 79db739a9..11c3ee161 100644 --- a/docs/android-app/android-app-quickstart.md +++ b/docs/android-app/android-app-quickstart.md @@ -6,7 +6,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.40.0' +implementation 'com.hedera.hashgraph:sdk:2.41.0' ``` 2. **gRPC implementation:** diff --git a/docs/java-app/java-app-quickstart.md b/docs/java-app/java-app-quickstart.md index ac1812218..d7b7515ed 100644 --- a/docs/java-app/java-app-quickstart.md +++ b/docs/java-app/java-app-quickstart.md @@ -8,7 +8,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.40.0' +implementation 'com.hedera.hashgraph:sdk:2.41.0' ``` _Maven:_ @@ -16,7 +16,7 @@ _Maven:_ com.hedera.hashgraph sdk - 2.40.0 + 2.41.0 ``` diff --git a/example-android/app/build.gradle.kts b/example-android/app/build.gradle.kts index dc935640d..a5bc706ff 100644 --- a/example-android/app/build.gradle.kts +++ b/example-android/app/build.gradle.kts @@ -68,7 +68,7 @@ dependencies { implementation(platform("com.hedera.hashgraph:sdk-dependency-versions")) // --------------------------------------------- - implementation("com.hedera.hashgraph:sdk:2.40.0") + implementation("com.hedera.hashgraph:sdk:2.41.0") implementation("com.google.android.material:material:1.11.0") diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index 9a686fd8e..dec474986 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -28,6 +28,6 @@ mainModuleInfo { } dependencies.constraints { - implementation("com.hedera.hashgraph:sdk:2.40.0") - implementation("com.hedera.hashgraph:sdk-full:2.40.0") + implementation("com.hedera.hashgraph:sdk:2.41.0") + implementation("com.hedera.hashgraph:sdk-full:2.41.0") } diff --git a/sdk/src/main/proto/roster.proto b/sdk/src/main/proto/roster.proto index 24fd9f778..4975e4a12 100644 --- a/sdk/src/main/proto/roster.proto +++ b/sdk/src/main/proto/roster.proto @@ -37,7 +37,7 @@ message Roster { * This list SHALL contain roster entries in natural order of ascending node ids. * This list SHALL NOT be empty.
*/ - repeated RosterEntry rosters = 1; + repeated RosterEntry roster_entries = 1; } /** diff --git a/version.txt b/version.txt index 770060be9..2d4c52ede 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.40.0 +2.41.0