From 80e508871c2ad85dc5dd6eaab88af9a5679df12a Mon Sep 17 00:00:00 2001 From: shabaraba Date: Wed, 4 Feb 2026 14:03:46 +0900 Subject: [PATCH] chore: 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 ffcafb7..a7f9783 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.5.0' + implementation 'com.kintone:kintone-java-client:2.5.1' } ``` - For projects using Maven @@ -17,7 +17,7 @@ API client library for Kintone REST APIs on Java. com.kintone kintone-java-client - 2.5.0 + 2.5.1 ``` diff --git a/build.gradle b/build.gradle index a79a716..74780f4 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id 'com.github.hierynomus.license' version '0.16.1' } -version = '2.5.0' +version = '2.5.1' sourceCompatibility = 1.8 targetCompatibility = 1.8 diff --git a/docs/getting-started.md b/docs/getting-started.md index 8e28f15..ba1eeef 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.5.0' + implementation 'com.kintone:kintone-java-client:2.5.1' } ``` @@ -39,7 +39,7 @@ Add dependency declaration in `pom.xml` of your project. com.kintone kintone-java-client - 2.5.0 + 2.5.1 ```