From 077004aea1181029becb72043d856cae4875203c Mon Sep 17 00:00:00 2001 From: tomohiro-okuyama <58939083+tomohiro-okuyama@users.noreply.github.com> Date: Wed, 6 Mar 2024 18:35:48 +0900 Subject: [PATCH] chore: bump version to 2.0.0 --- 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 7dccf18..9042d07 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:1.4.0' + implementation 'com.kintone:kintone-java-client:2.0.0' } ``` - For projects using Maven @@ -17,7 +17,7 @@ API client library for Kintone REST APIs on Java. com.kintone kintone-java-client - 1.4.0 + 2.0.0 ``` diff --git a/build.gradle b/build.gradle index 372ea01..3e3e007 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id 'com.github.hierynomus.license' version '0.16.1' } -version = '1.4.1' +version = '2.0.0' sourceCompatibility = 1.8 targetCompatibility = 1.8 diff --git a/docs/getting-started.md b/docs/getting-started.md index 8785f87..06fa277 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:1.4.0' + implementation 'com.kintone:kintone-java-client:2.0.0' } ``` @@ -39,7 +39,7 @@ Add dependency declaration in `pom.xml` of your project. com.kintone kintone-java-client - 1.4.0 + 2.0.0 ```