Skip to content

Commit

Permalink
Add support for Spring Boot 3.1.2 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Neriuzz authored Aug 1, 2023
1 parent 460c949 commit 1a079a8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.0.6
- 2.7.11
- 2.6.14
- 3.1.2
- 3.0.7
- 2.7.13
- 2.6.15
services:
zookeeper:
image: bitnami/zookeeper:3.5.5
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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.1] - 2023-08-01

### Added

* Support for Spring Boot 3.1

### Bumped

* Build against Spring Boot 3.0.6 --> 3.0.7
* Build against Spring Boot 2.7.11 --> 2.7.13
* Build against Spring Boot 2.6.14 --> 2.6.15

## [0.5.0] - 2022-05-06

### Added
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") ?: '2.6.14'}"
springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '2.6.15'}"
}

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.0
version=0.5.1

0 comments on commit 1a079a8

Please sign in to comment.