From 409b107b3fa65a4c4997c0f79adb8f257aca69ea Mon Sep 17 00:00:00 2001 From: shabaraba Date: Tue, 16 Dec 2025 09:32:50 +0900 Subject: [PATCH] update version --- README.md | 4 ++-- build.gradle | 2 +- docs/getting-started.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8875200..ffcafb7 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ API client library for Kintone REST APIs on Java. Add dependency declaration in `build.gradle` of your project. ``` dependencies { - implementation 'com.kintone:kintone-java-client:2.4.0' + implementation 'com.kintone:kintone-java-client:2.5.0' } ``` - For projects using Maven @@ -17,7 +17,7 @@ API client library for Kintone REST APIs on Java. com.kintone kintone-java-client - 2.4.0 + 2.5.0 ``` diff --git a/build.gradle b/build.gradle index fff4fca..66faf64 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id 'com.github.hierynomus.license' version '0.16.1' } -version = '2.4.0' +version = '2.5.0' sourceCompatibility = 1.8 targetCompatibility = 1.8 diff --git a/docs/getting-started.md b/docs/getting-started.md index 3b7130f..8e28f15 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -29,7 +29,7 @@ client.close(); Add dependency declaration in `build.gradle` of your project. ```groovy dependencies { - implementation 'com.kintone:kintone-java-client:2.4.0' + implementation 'com.kintone:kintone-java-client:2.5.0' } ``` @@ -39,7 +39,7 @@ Add dependency declaration in `pom.xml` of your project. com.kintone kintone-java-client - 2.4.0 + 2.5.0 ```