From 8c05fe3f9f4601e48da79794504ef653f6837568 Mon Sep 17 00:00:00 2001 From: elodani-transferwise <72390990+elodani-transferwise@users.noreply.github.com> Date: Tue, 1 Feb 2022 14:36:44 +0100 Subject: [PATCH] do not enforce springboot version, let the application decide (#19) --- CHANGELOG.md | 4 ++++ build.common.gradle | 10 +++++----- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97ba593..1ded3a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.1] - 2022-02-01 +### Changed +* Stop enforcing springboot platform + ## [1.4.0] - 2021-05-28 ### Changed * SpyqlConnection is implementing ProxyConnection interface. This would allow to get a delegate connection diff --git a/build.common.gradle b/build.common.gradle index 7a596f9..34d493b 100644 --- a/build.common.gradle +++ b/build.common.gradle @@ -36,11 +36,11 @@ repositories { ext.springBootVersion = "2.5.8" dependencies { - annotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!") - testAnnotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!") - compileOnly platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!") - implementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!") - testImplementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}!!") + annotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}") + testAnnotationProcessor platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}") + compileOnly platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}") + implementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}") + testImplementation platform("org.springframework.boot:spring-boot-dependencies:${springBootVersion}") annotationProcessor 'org.projectlombok:lombok' annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' diff --git a/gradle.properties b/gradle.properties index 7dc9496..156e86d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=1.4.0 +version=1.4.1