Skip to content

Commit

Permalink
SpringBoot 3.3 support. Dependency bump (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
xSeagullx authored Jul 18, 2024
1 parent 900e2d3 commit 96a6993
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.3.1
- 3.2.2
- 3.1.2
- 3.0.9
- 2.7.14
env:
SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }}
steps:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.6.4] - 2024-07-16

### Changed
* - Added support for Spring Boot 3.3.
- Updated dependencies.

## [1.6.3] - 2024-04-05

### Changed
Expand Down
6 changes: 3 additions & 3 deletions build.libraries.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
ext {
springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "2.6.15"
springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.2.2"

libraries = [
// explicit versions
spockCore : "org.spockframework:spock-core:2.3-groovy-4.0",
spotbugsAnnotations : "com.github.spotbugs:spotbugs-annotations:${spotbugs.toolVersion.get()}",
springBootDependencies : "org.springframework.boot:spring-boot-dependencies:${springBootVersion}",
twBaseUtils : "com.transferwise.common:tw-base-utils:1.12.3",
twContext : "com.transferwise.common:tw-context:1.0.1",
twBaseUtils : "com.transferwise.common:tw-base-utils:1.12.4",
twContext : "com.transferwise.common:tw-context:2.0.0",


// versions managed by spring-boot-dependencies platform
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=1.6.3
version=1.6.4

0 comments on commit 96a6993

Please sign in to comment.