From b38ec5d887eafb0f552f90ea6306d74170a7a743 Mon Sep 17 00:00:00 2001 From: Nikita Lebedev Date: Tue, 19 Sep 2023 14:13:16 +0300 Subject: [PATCH 1/2] Prepare for stable release 2.29.0 (updated CHANGELOG.md). Signed-off-by: Nikita Lebedev --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd78c4222..56634c6a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.29.0 + +### Added +- `populateAccountEvmAddress` and `populateAccountEvmAddressAsync` to `AccountId` + +### Fixed +- duplicate transaction IDs at high TPS (>25K) +- android compatibility issues + +### Changed +- GRPC configurations + ## 2.28.0 ### Added From 46d9d28505709100b6fc928bcce3d0b4f14fab4e Mon Sep 17 00:00:00 2001 From: dikel Date: Tue, 19 Sep 2023 14:17:29 +0300 Subject: [PATCH 2/2] prepare for release 2.29.0 Signed-off-by: dikel --- README.md | 4 ++-- example-android/app/build.gradle | 2 +- version.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5b1946c93..7acb68036 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Select _one_ of the following depending on your target platform. ```groovy -implementation 'com.hedera.hashgraph:sdk:2.28.0' +implementation 'com.hedera.hashgraph:sdk:2.29.0' ``` Select _one_ of the following to provide the gRPC implementation. @@ -56,7 +56,7 @@ Select _one_ of the following depending on your target platform. com.hedera.hashgraph sdk - 2.28.0 + 2.29.0 ``` diff --git a/example-android/app/build.gradle b/example-android/app/build.gradle index 6c6952653..edefbdae7 100644 --- a/example-android/app/build.gradle +++ b/example-android/app/build.gradle @@ -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.28.0' + implementation 'com.hedera.hashgraph:sdk:2.29.0' implementation 'org.slf4j:slf4j-simple:2.0.7' implementation 'io.grpc:grpc-okhttp:1.49.2' diff --git a/version.gradle b/version.gradle index 3da30a4d7..387605d1b 100644 --- a/version.gradle +++ b/version.gradle @@ -2,4 +2,4 @@ // and `sdk/build.gradle` so I extracted them into another file and made both aforementioned // files import this one. group = "com.hedera.hashgraph" -version = "2.28.0" +version = "2.29.0"