diff --git a/CHANGELOG.md b/CHANGELOG.md index 373a9cf91..00615e866 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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.42.0 + +### Added +- `addBytes4` and `addBytes4Array` methods for `ContractFunctionParameters` +- Support ports that are not well known for use with port forwarding + +### Fixed +- `setFileId` resets `contractId`, and similarly, when `setContractId` resets `fileId` + ## 2.41.0 ### Fixed diff --git a/docs/android-app/android-app-quickstart.md b/docs/android-app/android-app-quickstart.md index 11c3ee161..a57e2fb62 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.41.0' +implementation 'com.hedera.hashgraph:sdk:2.42.0' ``` 2. **gRPC implementation:** diff --git a/docs/java-app/java-app-quickstart.md b/docs/java-app/java-app-quickstart.md index d7b7515ed..f0b08edca 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.41.0' +implementation 'com.hedera.hashgraph:sdk:2.42.0' ``` _Maven:_ @@ -16,7 +16,7 @@ _Maven:_ com.hedera.hashgraph sdk - 2.41.0 + 2.42.0 ``` diff --git a/example-android/app/build.gradle.kts b/example-android/app/build.gradle.kts index a5bc706ff..dc2471a77 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.41.0") + implementation("com.hedera.hashgraph:sdk:2.42.0") implementation("com.google.android.material:material:1.11.0") diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index dec474986..c7c6000b4 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -28,6 +28,6 @@ mainModuleInfo { } dependencies.constraints { - implementation("com.hedera.hashgraph:sdk:2.41.0") - implementation("com.hedera.hashgraph:sdk-full:2.41.0") + implementation("com.hedera.hashgraph:sdk:2.42.0") + implementation("com.hedera.hashgraph:sdk-full:2.42.0") } diff --git a/version.txt b/version.txt index 2d4c52ede..345a83ee2 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.41.0 +2.42.0