From 6a37e01b79f92c2a74e36efadff26b6733b9b22f Mon Sep 17 00:00:00 2001 From: Florian Dreier Date: Fri, 1 Sep 2023 11:17:35 +0200 Subject: [PATCH] Release 32.0.0 --- CHANGELOG.md | 2 ++ build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90c52eac5..7b9a5ff71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ We use [semantic versioning](http://semver.org/): - PATCH version when you make backwards compatible bug fixes. # Next Release + +# 32.0.0 - [breaking] _teamscale-gradle-plugin_: Removed usage of deprecated Gradle APIs - `teamscale.agent.destinationProperty` type has changed from `Property` to `DirectoryProperty` - `teamscale.agent.setDestination(destination)` parameter type has changed from `Property` to `Provider` diff --git a/build.gradle.kts b/build.gradle.kts index 8c7c1cbb8..8bd166020 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { group = "com.teamscale" -val appVersion by extra("31.0.0") +val appVersion by extra("32.0.0") val snapshotVersion = appVersion + if (VersionUtils.isTaggedRelease()) "" else "-SNAPSHOT"