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 ```