diff --git a/README.md b/README.md
index 18c1b3ae09..9abcd136ca 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ You can install it in your application using your build tool such as Gradle and
To add a dependency on ScalarDB using Gradle, use the following:
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb:3.12.0'
+ implementation 'com.scalar-labs:scalardb:3.12.1'
}
```
@@ -22,7 +22,7 @@ To add a dependency using Maven:
com.scalar-labs
scalardb
- 3.12.0
+ 3.12.1
```
diff --git a/build.gradle b/build.gradle
index 4eee861254..fe31412380 100644
--- a/build.gradle
+++ b/build.gradle
@@ -17,7 +17,7 @@ subprojects {
apply plugin: 'java-library-distribution'
apply plugin: 'com.diffplug.spotless'
- project.version = '3.12.1-SNAPSHOT'
+ project.version = '3.12.1'
ext {
guiceVersion = '5.1.0'
diff --git a/docs/configurations.md b/docs/configurations.md
index 239224f462..696b0c7916 100644
--- a/docs/configurations.md
+++ b/docs/configurations.md
@@ -4,7 +4,7 @@ This page describes the available configurations for ScalarDB.
## ScalarDB client configurations
-ScalarDB provides its own transaction protocol called Consensus Commit. You can use the Consensus Commit protocol directly through the ScalarDB client library or through [ScalarDB Cluster (redirects to the Enterprise docs site)](https://scalardb.scalar-labs.com/docs/3.10/scalardb-cluster/), which is a component that is available only in the ScalarDB Enterprise edition.
+ScalarDB provides its own transaction protocol called Consensus Commit. You can use the Consensus Commit protocol directly through the ScalarDB client library or through [ScalarDB Cluster (redirects to the Enterprise docs site)](https://scalardb.scalar-labs.com/docs/3.12/scalardb-cluster/), which is a component that is available only in the ScalarDB Enterprise edition.
### Use Consensus Commit directly
@@ -155,9 +155,9 @@ For details about using multiple storages, see [Multi-Storage Transactions](mult
### Use Consensus Commit through ScalarDB Cluster
-[ScalarDB Cluster (redirects to the Enterprise docs site)](https://scalardb.scalar-labs.com/docs/3.10/scalardb-cluster/) is a component that provides a gRPC interface to ScalarDB.
+[ScalarDB Cluster (redirects to the Enterprise docs site)](https://scalardb.scalar-labs.com/docs/3.12/scalardb-cluster/) is a component that provides a gRPC interface to ScalarDB.
-For details about client configurations, see the ScalarDB Cluster [client configurations (redirects to the Enterprise docs site)](https://scalardb.scalar-labs.com/docs/3.10/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api/#client-configurations).
+For details about client configurations, see the ScalarDB Cluster [client configurations (redirects to the Enterprise docs site)](https://scalardb.scalar-labs.com/docs/3.12/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api/#client-configurations).
## Cross-partition scan configurations
@@ -273,4 +273,4 @@ scalar.db.transaction_manager=cluster
scalar.db.contact_points=indirect:
```
-For details about client configurations, see the ScalarDB Cluster [client configurations (redirects to the Enterprise docs site)](https://scalardb.scalar-labs.com/docs/3.10/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api/#client-configurations).
+For details about client configurations, see the ScalarDB Cluster [client configurations (redirects to the Enterprise docs site)](https://scalardb.scalar-labs.com/docs/3.12/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api/#client-configurations).
diff --git a/docs/getting-started-kotlin/build.gradle.kts b/docs/getting-started-kotlin/build.gradle.kts
index e17224639b..d8a093ec43 100644
--- a/docs/getting-started-kotlin/build.gradle.kts
+++ b/docs/getting-started-kotlin/build.gradle.kts
@@ -13,7 +13,7 @@ repositories {
}
dependencies {
- implementation("com.scalar-labs", "scalardb", "3.12.0")
+ implementation("com.scalar-labs", "scalardb", "3.12.1")
testImplementation(kotlin("test"))
}
diff --git a/docs/getting-started/build.gradle b/docs/getting-started/build.gradle
index 7bd82d12d2..a222bdacd5 100644
--- a/docs/getting-started/build.gradle
+++ b/docs/getting-started/build.gradle
@@ -9,7 +9,7 @@ repositories {
mainClassName = "sample.ElectronicMoneyMain"
dependencies {
- implementation 'com.scalar-labs:scalardb:3.12.0'
+ implementation 'com.scalar-labs:scalardb:3.12.1'
implementation 'org.slf4j:slf4j-simple:1.7.30'
}
diff --git a/docs/index.md b/docs/index.md
index a0c5f2393e..a46d9c431d 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -13,7 +13,7 @@ You can install it in your application using your build tool such as Gradle and
To add a dependency on ScalarDB using Gradle, use the following:
```gradle
dependencies {
- implementation 'com.scalar-labs:scalardb:3.12.0'
+ implementation 'com.scalar-labs:scalardb:3.12.1'
}
```
@@ -22,7 +22,7 @@ To add a dependency using Maven:
com.scalar-labs
scalardb
- 3.12.0
+ 3.12.1
```