diff --git a/CHANGELOG.md b/CHANGELOG.md index 772473e7f..ea60b313a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ We use [semantic versioning][semver] # Next Release + +# 15.1.1 - [documentation] Configuration for SAP NetWeaver Java (>= 7.50) is now documented -- [feature] teamscale-client accepts `String` as report format as well -- [feature] teamscale-client allows attaching arbitrary `Interceptor`s to Teamscale service # 15.1.0 - [feature] supplying a `class-dir` option is no longer mandatory diff --git a/agent/src/main/java/com/teamscale/jacoco/agent/convert/ConvertCommand.java b/agent/src/main/java/com/teamscale/jacoco/agent/convert/ConvertCommand.java index 2fdfc6ede..3a4191588 100644 --- a/agent/src/main/java/com/teamscale/jacoco/agent/convert/ConvertCommand.java +++ b/agent/src/main/java/com/teamscale/jacoco/agent/convert/ConvertCommand.java @@ -56,7 +56,7 @@ public class ConvertCommand implements ICommand { /** The directory to write the XML traces to. */ @Parameter(names = {"--in", "-i"}, required = true, description = "" + "The binary .exec file(s), test details and " + - "test executions to read") + "test executions to read. Can be a single file or a directory that is recursively scanned for relevant files.") /* package */ List inputFiles = new ArrayList<>(); /** The directory to write the XML traces to. */ diff --git a/build.gradle b/build.gradle index b6eb83182..6a08d5737 100644 --- a/build.gradle +++ b/build.gradle @@ -11,10 +11,10 @@ buildscript { ext { - appVersion = '15.1.0' // Also update version in BuildVersion.kt + appVersion = '15.1.1' // Also update version in BuildVersion.kt pluginVersion = '0.4.13' // Also update version in BuildVersion.kt - reportGeneratorVersion = '1.4.0' - teamscaleClientVersion = '0.2.11' + reportGeneratorVersion = '1.4.1' + teamscaleClientVersion = '0.3.0' // When upgrading JaCoCo to a newer version make sure to // check the comment in the AnalyzerCache.java and CachingInstructionsBuilder.java diff --git a/teamscale-gradle-plugin/README.md b/teamscale-gradle-plugin/README.md index 0d1c9030a..f2ffac13a 100644 --- a/teamscale-gradle-plugin/README.md +++ b/teamscale-gradle-plugin/README.md @@ -15,7 +15,7 @@ buildscript { maven { url 'https://share.cqse.eu/public/maven/' } } dependencies { - classpath 'com.teamscale:teamscale-gradle-plugin:0.3.0' + classpath 'com.teamscale:teamscale-gradle-plugin:0.4.13' } } @@ -23,7 +23,7 @@ apply plugin: 'teamscale' teamscale { server { - url = 'https://mycompany.com/teamsale/' + url = 'https://mycompany.com/teamscale/' userName = 'build' userAccessToken = '7fa5.....' project = 'example-project-id'