From 8cbdf16e9f7197cdbd27a53d026f043850e83084 Mon Sep 17 00:00:00 2001 From: Eric Avdey Date: Thu, 2 Nov 2023 09:45:06 -0300 Subject: [PATCH] chore: prepare for 0.1.3 release --- CHANGES.md | 4 ++++ VERSION | 2 +- sample/build.gradle | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 74e900c..ccc1647 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +# 0.1.3 (2023-11-02) +- [UPGRADED] Spring Boot compilation version to `2.7.17`. +- [UPGRADED] `com.ibm.cloud:cloudant` to `0.8.0`. + # 0.1.2 (2023-09-26) - [UPGRADED] Spring Boot compilation version to `2.7.16`. - [UPGRADED] `com.ibm.cloud:cloudant` to `0.7.0`. diff --git a/VERSION b/VERSION index 4b352f2..b1e80bb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.3-SNAPSHOT +0.1.3 diff --git a/sample/build.gradle b/sample/build.gradle index ebfd8cf..230ab07 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'org.springframework.boot' version '2.7.16' + id 'org.springframework.boot' version '2.7.17' id 'io.spring.dependency-management' version '1.1.3' id 'java' } @@ -14,7 +14,7 @@ repositories { dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' - implementation 'com.ibm.cloud:cloudant-spring-boot-starter:0.1.2' + implementation 'com.ibm.cloud:cloudant-spring-boot-starter:0.1.3' testImplementation 'org.springframework.boot:spring-boot-starter-test' }