Skip to content

Commit 0132d0b

Browse files
authored
release: v2.49.0 (#2215)
Signed-off-by: Ivan Ivanov <[email protected]>
1 parent 8063dcc commit 0132d0b

File tree

6 files changed

+17
-7
lines changed

6 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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.49.0
9+
10+
### Added
11+
12+
- New APIs in `AccountCreateTransaction` : `setKeyWithAlias(ECDSAKey)`, `setKeyWithAlias(Key, ECDSAKey)` and `setKeyWithoutAlias(Key)`.
13+
14+
### Changed
15+
16+
- Deprecated `setKey` in `AccountCreateTransaction`.
17+
818
## 2.48.0
919

1020
### Changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ To get started with an Android project, you'll need to add the following **two**
77
1. **Hedera™ Java SDK:**
88

99
```groovy
10-
implementation 'com.hedera.hashgraph:sdk:2.48.0'
10+
implementation 'com.hedera.hashgraph:sdk:2.49.0'
1111
```
1212

1313
2. **gRPC implementation:**

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To get started with a Java project, you'll need to add the following **three** d
99
_Gradle:_
1010

1111
```groovy
12-
implementation 'com.hedera.hashgraph:sdk:2.48.0'
12+
implementation 'com.hedera.hashgraph:sdk:2.49.0'
1313
```
1414

1515
_Maven:_
@@ -18,7 +18,7 @@ _Maven:_
1818
<dependency>
1919
<groupId>com.hedera.hashgraph</groupId>
2020
<artifactId>sdk</artifactId>
21-
<version>2.48.0</version>
21+
<version>2.49.0</version>
2222
</dependency>
2323
```
2424

example-android/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies {
5050
implementation(platform("org.hiero:hiero-dependency-versions"))
5151
// ---------------------------------------------
5252

53-
implementation("com.hedera.hashgraph:sdk:2.48.0")
53+
implementation("com.hedera.hashgraph:sdk:2.49.0")
5454

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

examples/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ dependencyAnalysis {
1919
dependencies.constraints {
2020
implementation("com.google.guava:guava:33.3.1-android")
2121
implementation("io.github.cdimascio:dotenv-java:3.0.2")
22-
implementation("com.hedera.hashgraph:sdk:2.48.0")
23-
implementation("com.hedera.hashgraph:sdk-full:2.48.0")
22+
implementation("com.hedera.hashgraph:sdk:2.49.0")
23+
implementation("com.hedera.hashgraph:sdk-full:2.49.0")
2424
}
2525

2626
tasks.register<RunAllExample>("runAllExamples") {

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.48.0
1+
2.49.0

0 commit comments

Comments
 (0)