From a8368f6cfeffcf1a28cde0a82c4b180023548f66 Mon Sep 17 00:00:00 2001 From: Toshihiro Suzuki Date: Mon, 7 Aug 2023 10:51:33 +0900 Subject: [PATCH] Upgrade the version to 3.9.2 --- README.md | 4 ++-- build.gradle | 2 +- docs/add-scalardb-to-your-build.md | 4 ++-- docs/getting-started/build.gradle | 2 +- docs/index.md | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 1032d350b0..4eb7cf5f79 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.9.1' + implementation 'com.scalar-labs:scalardb:3.9.2' } ``` @@ -22,7 +22,7 @@ To add a dependency using Maven: com.scalar-labs scalardb - 3.9.1 + 3.9.2 ``` diff --git a/build.gradle b/build.gradle index aee89c4d78..4e790e1706 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.9.2-SNAPSHOT' + project.version = '3.9.2' ext { guiceVersion = '5.1.0' diff --git a/docs/add-scalardb-to-your-build.md b/docs/add-scalardb-to-your-build.md index 9179202fcf..90f9f83352 100644 --- a/docs/add-scalardb-to-your-build.md +++ b/docs/add-scalardb-to-your-build.md @@ -6,7 +6,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.9.1' + implementation 'com.scalar-labs:scalardb:3.9.2' } ``` @@ -15,6 +15,6 @@ To add a dependency using Maven: com.scalar-labs scalardb - 3.9.1 + 3.9.2 ``` diff --git a/docs/getting-started/build.gradle b/docs/getting-started/build.gradle index 73bba44a58..16532b760a 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.9.1' + implementation 'com.scalar-labs:scalardb:3.9.2' implementation 'org.slf4j:slf4j-simple:1.7.30' } diff --git a/docs/index.md b/docs/index.md index 99fb34b984..78c15007b1 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.9.1' + implementation 'com.scalar-labs:scalardb:3.9.2' } ``` @@ -22,7 +22,7 @@ To add a dependency using Maven: com.scalar-labs scalardb - 3.9.1 + 3.9.2 ```