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