From 23920b9fc6e64a9402d01374e121d4e68f054b6b Mon Sep 17 00:00:00 2001 From: Jun Luo <4catcode@gmail.com> Date: Mon, 14 Oct 2024 14:52:30 +0800 Subject: [PATCH] release: 1.0.0-beta0 (#648) --- CHANGELOG.md | 4 ++-- android_test/app/build.gradle.kts | 2 +- build.gradle.kts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e072ec95a..4a78d549b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ you can start integrating the new features into your codebase if you want a head start. The following are the changes since version 1.0.0-alpha0. If you are upgrading from an older version, -please also refer to the change logs of previous versions, **especially 1.0.0-alpha0**. +please also refer to the change logs of previous versions, **especially [1.0.0-alpha0](https://github.com/lightsail-network/java-stellar-sdk/releases/tag/1.0.0-alpha0)**. ### Update - feat: support constructors in contract creation via `InvokeHostFunctionOperation.createContractOperationBuilder`. @@ -25,7 +25,7 @@ please also refer to the change logs of previous versions, **especially 1.0.0-al - refactor!: The `protocolVersion` in the response is now represented as an `Integer`. ## 1.0.0-alpha0 -We are thrilled to announce the release of version 1.0.0-alpha0 for java-stellar-sdk, +We are thrilled to announce the release of version 1.0.0-beta0 for java-stellar-sdk, which has been in development for nearly a decade. This release marks a significant milestone in our journey, as we have made substantial changes and improvements to enhance the functionality and usability of our software. diff --git a/android_test/app/build.gradle.kts b/android_test/app/build.gradle.kts index 7b99101ab..00e941efd 100644 --- a/android_test/app/build.gradle.kts +++ b/android_test/app/build.gradle.kts @@ -68,7 +68,7 @@ dependencies { implementation("androidx.compose.material3:material3") // Since we are adding local jar(libs/stellar-sdk.jar) as dependency, // gradle cannot automatically download the required third-party dependencies. - implementation(files("libs/stellar-sdk-1.0.0-alpha0.jar")) + implementation(files("libs/stellar-sdk-1.0.0-beta0.jar")) implementation("com.squareup.okhttp3:okhttp:4.11.0") implementation("com.squareup.okhttp3:okhttp-sse:4.11.0") implementation("com.moandjiezana.toml:toml4j:0.7.2") diff --git a/build.gradle.kts b/build.gradle.kts index 20be8f073..46e73e3bb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "network.lightsail" -version = "1.0.0-alpha0" +version = "1.0.0-beta0" java { sourceCompatibility = JavaVersion.VERSION_1_8