Skip to content

Commit

Permalink
APPENG-1074: Update to support Spring Boot 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
normanma-tw committed Dec 4, 2024
1 parent 3f7fb51 commit 61efdcf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.4.0
- 3.3.1
- 3.2.2
services:
zookeeper:
image: bitnami/zookeeper:3.5.5
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).

## [0.5.4] - 2024-12-04

### Changed
- Added support for Spring Boot 3.4.
- Dropped support for Spring Boot 3.2.

## [0.5.3] - 2024-07-16

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tw-curator
![Apache 2](https://img.shields.io/hexpm/l/plug.svg)
![Java 11](https://img.shields.io/badge/Java-11-blue.svg)
![Java 17](https://img.shields.io/badge/Java-17-blue.svg)
![Maven Central](https://badgen.net/maven/v/maven-central/com.transferwise.common/tw-curator-starter)
[![Owners](https://img.shields.io/badge/team-AppEng-blueviolet.svg?logo=wise)](https://transferwise.atlassian.net/wiki/spaces/EKB/pages/2520812116/Application+Engineering+Team) [![Slack](https://img.shields.io/badge/slack-sre--guild-blue.svg?logo=slack)](https://app.slack.com/client/T026FB76G/CLR1U8SNS)
> Use the `@application-engineering-on-call` handle on Slack for help.
Expand All @@ -10,7 +10,7 @@
Documentation can be found in the [docs](docs/) directory, or if you're a Wiser, on the [developer portal](https://dev.tw.ee/docs/default/Component/tw-curator).

## License
Copyright 2021 TransferWise Ltd.
Copyright 2024 TransferWise Ltd.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
}

ext {
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.2.2'}"
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '3.4.0'}"
}

idea.project {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.5.3
version=0.5.4

0 comments on commit 61efdcf

Please sign in to comment.