From 7185638da7d7b20f25df7d0e228ab2868d2e655c Mon Sep 17 00:00:00 2001 From: Toshihiro Suzuki Date: Tue, 26 Dec 2023 17:57:01 +0900 Subject: [PATCH] Upgrade the version to 3.11.0 --- README.md | 4 ++-- build.gradle | 2 +- docs/configurations.md | 8 ++++---- docs/getting-started-kotlin/build.gradle.kts | 2 +- docs/getting-started/build.gradle | 2 +- docs/index.md | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index a770da3ad3..fec0d333c3 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.10.1' + implementation 'com.scalar-labs:scalardb:3.11.0' } ``` @@ -22,7 +22,7 @@ To add a dependency using Maven: com.scalar-labs scalardb - 3.10.1 + 3.11.0 ``` diff --git a/build.gradle b/build.gradle index 30a98bce1b..25b7c28075 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.11.0-SNAPSHOT' + project.version = '3.11.0' ext { guiceVersion = '5.1.0' diff --git a/docs/configurations.md b/docs/configurations.md index 33850040c8..832578c3d9 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.11/scalardb-cluster/), which is a component that is available only in the ScalarDB Enterprise edition. ### Use Consensus Commit directly @@ -154,9 +154,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.11/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.11/scalardb-cluster/developer-guide-for-scalardb-cluster-with-java-api/#client-configurations). ## Cross-partition scan configurations @@ -259,4 +259,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.11/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 a236523a18..d571ab8240 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.10.1") + implementation("com.scalar-labs", "scalardb", "3.11.0") testImplementation(kotlin("test")) } diff --git a/docs/getting-started/build.gradle b/docs/getting-started/build.gradle index d0b1295d59..e7b4fe180d 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.10.1' + implementation 'com.scalar-labs:scalardb:3.11.0' implementation 'org.slf4j:slf4j-simple:1.7.30' } diff --git a/docs/index.md b/docs/index.md index c4ce799dea..36052a5f1c 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.10.1' + implementation 'com.scalar-labs:scalardb:3.11.0' } ``` @@ -22,7 +22,7 @@ To add a dependency using Maven: com.scalar-labs scalardb - 3.10.1 + 3.11.0 ```