diff --git a/CHANGELOG.md b/CHANGELOG.md index aed5ae31a..fd6ee1dee 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 + +# 33.0.0 - [feature] add installer for system-wide installation (see agent/MIGRATION.md for a migration guide) - [feature] allow specifying configuration ID from Teamscale via environment variable `TEAMSCALE_JAVA_PROFILER_CONFIG_ID` - [breaking change] default log and coverage file directory changed to `/tmp` which works in more situations diff --git a/build.gradle.kts b/build.gradle.kts index a117a932c..f797f08aa 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { group = "com.teamscale" -val appVersion by extra("32.6.3") +val appVersion by extra("33.0.0") val snapshotVersion = appVersion + if (VersionUtils.isTaggedRelease()) "" else "-SNAPSHOT" diff --git a/settings.gradle.kts b/settings.gradle.kts index 5a245db70..00faedc7e 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,6 +1,3 @@ -import org.gradle.internal.impldep.org.apache.commons.io.filefilter.HiddenFileFilter -import java.io.FileFilter - plugins { id("org.gradle.toolchains.foojay-resolver-convention") version("0.7.0") }