Skip to content

Commit

Permalink
[APPENG-582] Add support for Spring Boot 3.1.2 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Neriuzz authored Aug 1, 2023
1 parent fb4e51d commit dc72e64
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
max-parallel: 100
matrix:
spring_boot_version:
- 3.0.6
- 3.1.2
- 3.0.7
env:
SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }}
steps:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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).

## [3.0.1] - 2023-08-01

### Added

* Support for Spring Boot 3.1

### Bumped

* Build against Spring Boot 3.0.6 --> 3.0.7

## [3.0.0] - 2023-05-06

### Changed
Expand Down
2 changes: 1 addition & 1 deletion build.libraries.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ext {
springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.0.6"
springBootVersion = System.getenv("SPRING_BOOT_VERSION") ?: "3.0.7"

libraries = [
// explicit versions
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=3.0.0
version=3.0.1

0 comments on commit dc72e64

Please sign in to comment.