diff --git a/CHANGELOG.md b/CHANGELOG.md
index 24b24ad3c..b35e6ab7b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,8 @@
## Pending
+## 4.0.1
+
### Update
- fix: allow `extendTo` to be 0 in `ExtendFootprintTTLOperation`. ([#810](https://github.com/lightsail-network/java-stellar-sdk/issues/810))
diff --git a/android_test/app/build.gradle.kts b/android_test/app/build.gradle.kts
index 0908a5e09..a3b88b408 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-4.0.0.jar"))
+ implementation(files("libs/stellar-sdk-4.0.1.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 06ff6090d..7c2c67ac9 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -12,7 +12,7 @@ plugins {
}
group = "network.lightsail"
-version = "4.0.0"
+version = "4.0.1"
java {
toolchain {
diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts
index ed403b73c..9181dfac9 100644
--- a/examples/build.gradle.kts
+++ b/examples/build.gradle.kts
@@ -22,7 +22,7 @@ spotless {
dependencies {
// Use https://central.sonatype.com/artifact/network.lightsail/stellar-sdk in prod.
- implementation("network.lightsail:stellar-sdk:4.0.0")
+ implementation("network.lightsail:stellar-sdk:4.0.1")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
diff --git a/pom.xml b/pom.xml
index cea752200..1e45f167d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@
network.lightsail
stellar-sdk
- 4.0.0
+ 4.0.1
jar
stellar-sdk
diff --git a/readme.md b/readme.md
index e4061eb96..5c4ee7302 100644
--- a/readme.md
+++ b/readme.md
@@ -14,13 +14,13 @@ The Java Stellar SDK library provides APIs to build transactions and connect to
network.lightsail
stellar-sdk
- 4.0.0
+ 4.0.1
```
### Gradle
```groovy
-implementation 'network.lightsail:stellar-sdk:4.0.0'
+implementation 'network.lightsail:stellar-sdk:4.0.1'
```
You can find instructions on how to install this dependency using alternative package managers [here](https://central.sonatype.com/artifact/network.lightsail/stellar-sdk).
diff --git a/skills/java-stellar-sdk/SKILL.md b/skills/java-stellar-sdk/SKILL.md
index ffdfe1a42..4db8f076e 100644
--- a/skills/java-stellar-sdk/SKILL.md
+++ b/skills/java-stellar-sdk/SKILL.md
@@ -22,14 +22,14 @@ Maven:
network.lightsail
stellar-sdk
- 4.0.0
+ 4.0.1
```
Gradle:
```groovy
-implementation 'network.lightsail:stellar-sdk:4.0.0'
+implementation 'network.lightsail:stellar-sdk:4.0.1'
```
## Import style
diff --git a/skills/java-stellar-sdk/references/quickstart.md b/skills/java-stellar-sdk/references/quickstart.md
index 8413f6a06..47328a8d0 100644
--- a/skills/java-stellar-sdk/references/quickstart.md
+++ b/skills/java-stellar-sdk/references/quickstart.md
@@ -6,7 +6,7 @@ from the environment. See `transactions.md` for the full lifecycle.
## Install (Gradle)
```groovy
-implementation 'network.lightsail:stellar-sdk:4.0.0'
+implementation 'network.lightsail:stellar-sdk:4.0.1'
```
## Generate or load a keypair