diff --git a/.github/tw-rules.yaml b/.github/tw-rules.yaml index 295545d..fa2da57 100644 --- a/.github/tw-rules.yaml +++ b/.github/tw-rules.yaml @@ -1 +1,8 @@ runChecks: true +actions: + branch-protection-settings: + branches: + - name: master + checks: + - name: Build and Test + type: tests \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 676be21..a32fa1a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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.9 + - 2.7.14 + - 2.6.15 env: SPRING_BOOT_VERSION: ${{ matrix.spring_boot_version }} GRADLE_OPTS: "-Djava.security.egd=file:/dev/./urandom -Dorg.gradle.parallel=true" diff --git a/CHANGELOG.md b/CHANGELOG.md index 5347c52..c52581f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). +## [1.2.1] - 2023-08-15 + +### Added + +* Support for Spring Boot 3.1. + +### Updated + +* Build against Spring Boot 3.0.6 --> 3.0.9 +* Build against Spring Boot 2.7.11 --> 2.7.14 +* Build against Spring Boot 2.6.14 --> 2.6.15 + ## [1.2.0] - 2023-05-08 ### Added diff --git a/build.libraries.gradle b/build.libraries.gradle index 1fa3bff..814b6f1 100644 --- a/build.libraries.gradle +++ b/build.libraries.gradle @@ -1,5 +1,5 @@ ext { - springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '2.6.14'}" + springBootVersion = "${System.getenv("SPRING_BOOT_VERSION") ?: '2.6.15'}" libraries = [ // version defined diff --git a/gradle.properties b/gradle.properties index 1bf5794..2d48fba 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=1.2.0 +version=1.2.1