Skip to content

Commit

Permalink
release: v2.35.1 (#1893)
Browse files Browse the repository at this point in the history
Signed-off-by: Nikita Lebedev <[email protected]>
  • Loading branch information
thenswan authored Jul 12, 2024
1 parent 49c3864 commit 96b363c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ 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.35.1

### Added
- `toStandardECDSAsecp256k1PrivateKeyCustomDerivationPath` function to `Mnemonic`
- `fromBytes` function to `Key`

### Changed
- build scripts rework

### Fixed
- handling of `PLATFORM_NOT_ACTIVE` status code when calling `getReceipt()` or `getRecord()`
- _build scripts fix_
- _paths_ in examples/README.md

## 2.35.0

### Added
Expand Down
4 changes: 2 additions & 2 deletions docs/java-app/java-app-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ To get started with a Java project, you'll need to add the following **three** d

_Gradle:_
```groovy
implementation 'com.hedera.hashgraph:sdk:2.35.0'
implementation 'com.hedera.hashgraph:sdk:2.35.1'
```

_Maven:_
```xml
<dependency>
<groupId>com.hedera.hashgraph</groupId>
<artifactId>sdk</artifactId>
<version>2.35.0</version>
<version>2.35.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion example-android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {
implementation(platform("com.hedera.hashgraph:sdk-dependency-versions"))
// ---------------------------------------------

implementation("com.hedera.hashgraph:sdk:2.35.0")
implementation("com.hedera.hashgraph:sdk:2.35.1")

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

Expand Down
4 changes: 2 additions & 2 deletions examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ mainModuleInfo {
}

dependencies.constraints {
implementation("com.hedera.hashgraph:sdk:2.35.0")
implementation("com.hedera.hashgraph:sdk-full:2.35.0")
implementation("com.hedera.hashgraph:sdk:2.35.1")
implementation("com.hedera.hashgraph:sdk-full:2.35.1")
}
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.35.0
2.35.1

0 comments on commit 96b363c

Please sign in to comment.