Skip to content

Commit

Permalink
do not enforce springboot version, let the application decide (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
elodani-transferwise authored Feb 1, 2022
1 parent c8f91af commit 8c05fe3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions build.common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.4.0
version=1.4.1

0 comments on commit 8c05fe3

Please sign in to comment.