Skip to content

Commit 2fb25c8

Browse files
authored
release: v2.41.0 (#2019)
Signed-off-by: Ivan Ivanov <[email protected]>
1 parent 00872e6 commit 2fb25c8

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 2.41.0
9+
10+
### Fixed
11+
- Android runtime errors for API levels 26-33.
12+
813
## 2.40.0
914

1015
### Added

docs/android-app/android-app-quickstart.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To get started with an Android project, you'll need to add the following **two**
66

77
1. **Hedera™ Java SDK:**
88
```groovy
9-
implementation 'com.hedera.hashgraph:sdk:2.40.0'
9+
implementation 'com.hedera.hashgraph:sdk:2.41.0'
1010
```
1111

1212
2. **gRPC implementation:**

docs/java-app/java-app-quickstart.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ To get started with a Java project, you'll need to add the following **three** d
88

99
_Gradle:_
1010
```groovy
11-
implementation 'com.hedera.hashgraph:sdk:2.40.0'
11+
implementation 'com.hedera.hashgraph:sdk:2.41.0'
1212
```
1313

1414
_Maven:_
1515
```xml
1616
<dependency>
1717
<groupId>com.hedera.hashgraph</groupId>
1818
<artifactId>sdk</artifactId>
19-
<version>2.40.0</version>
19+
<version>2.41.0</version>
2020
</dependency>
2121
```
2222

example-android/app/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ dependencies {
6868
implementation(platform("com.hedera.hashgraph:sdk-dependency-versions"))
6969
// ---------------------------------------------
7070

71-
implementation("com.hedera.hashgraph:sdk:2.40.0")
71+
implementation("com.hedera.hashgraph:sdk:2.41.0")
7272

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

examples/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ mainModuleInfo {
2828
}
2929

3030
dependencies.constraints {
31-
implementation("com.hedera.hashgraph:sdk:2.40.0")
32-
implementation("com.hedera.hashgraph:sdk-full:2.40.0")
31+
implementation("com.hedera.hashgraph:sdk:2.41.0")
32+
implementation("com.hedera.hashgraph:sdk-full:2.41.0")
3333
}

sdk/src/main/proto/roster.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ message Roster {
3737
* This list SHALL contain roster entries in natural order of ascending node ids.
3838
* This list SHALL NOT be empty.<br/>
3939
*/
40-
repeated RosterEntry rosters = 1;
40+
repeated RosterEntry roster_entries = 1;
4141
}
4242

4343
/**

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.40.0
1+
2.41.0

0 commit comments

Comments
 (0)