Skip to content

Commit

Permalink
release-v2.47.0-beta.4 (#2208)
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Ivanov <[email protected]>
  • Loading branch information
0xivanov authored Feb 3, 2025
1 parent 8b9433c commit 04222dd
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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.47.0-beta.4

## 2.47.0-beta.3

## 2.47.0-beta.2
Expand Down
2 changes: 1 addition & 1 deletion docs/android-app/android-app-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,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.47.0-beta.3'
implementation 'com.hedera.hashgraph:sdk:2.47.0-beta.4'
```

2. **gRPC implementation:**
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 @@ -9,7 +9,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.47.0-beta.3'
implementation 'com.hedera.hashgraph:sdk:2.47.0-beta.4'
```

_Maven:_
Expand All @@ -18,7 +18,7 @@ _Maven:_
<dependency>
<groupId>com.hedera.hashgraph</groupId>
<artifactId>sdk</artifactId>
<version>2.47.0-beta.3</version>
<version>2.47.0-beta.4</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 @@ -50,7 +50,7 @@ dependencies {
implementation(platform("org.hiero:hiero-dependency-versions"))
// ---------------------------------------------

implementation("com.hedera.hashgraph:sdk:2.46.0")
implementation("com.hedera.hashgraph:sdk:2.47.0-beta.4")

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 @@ -19,8 +19,8 @@ dependencyAnalysis {
dependencies.constraints {
implementation("com.google.guava:guava:33.3.1-android")
implementation("io.github.cdimascio:dotenv-java:3.0.2")
implementation("com.hedera.hashgraph:sdk:2.46.0")
implementation("com.hedera.hashgraph:sdk-full:2.46.0")
implementation("com.hedera.hashgraph:sdk:2.47.0-beta.4")
implementation("com.hedera.hashgraph:sdk-full:2.47.0-beta.4")
}

tasks.register<RunAllExample>("runAllExamples") {
Expand Down
2 changes: 2 additions & 0 deletions examples/gradle/module.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
com.hedera.hashgraph.sdk=com.hedera.hashgraph:sdk
com.hedera.hashgraph.sdk.full=com.hedera.hashgraph:sdk-full
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ plugins { id("org.hiero.gradle.build") version "0.3.1" }
rootProject.name = "hedera-sdk-java"

javaModules {
module("sdk") { group = "com.hedera.hashgraph.sdk" }
module("sdk-full") { group = "com.hedera.hashgraph.sdk" }
module("sdk") { group = "com.hedera.hashgraph" }
module("sdk-full") { group = "com.hedera.hashgraph" }
module("tck") { group = "com.hedera.hashgraph.tck" }
}

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.47.0-beta.3
2.47.0-beta.4

0 comments on commit 04222dd

Please sign in to comment.