From dea117932e55cfc3bfbc0221709f274d09d3aa09 Mon Sep 17 00:00:00 2001 From: Andreas Goeb Date: Thu, 5 Mar 2020 14:07:33 +0100 Subject: [PATCH] Release 15.3.0 --- CHANGELOG.md | 2 ++ build.gradle | 10 +++++----- .../src/main/kotlin/com/teamscale/BuildVersion.kt | 4 ++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bbe85d88..ed2f7416c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ We use [semantic versioning][semver] # Next Release + +# 15.3.0 - [feature] Added `coverage-via-http` option for testwise mode - [feature] Added `teamscale-revision` option to supply VCS revision instead of branch and timestamp - [feature] Added `/revision` HTTP endpoint for testwise mode diff --git a/build.gradle b/build.gradle index 8cd5ca3fb..4b4f13a12 100644 --- a/build.gradle +++ b/build.gradle @@ -10,10 +10,10 @@ buildscript { } ext { - appVersion = '15.2.0' // Also update version in BuildVersion.kt - pluginVersion = '0.5.4' // Also update version in BuildVersion.kt - reportGeneratorVersion = '1.4.5' - teamscaleClientVersion = '0.3.2' + appVersion = '15.3.0' // Also update version in BuildVersion.kt + pluginVersion = '0.5.5' // Also update version in BuildVersion.kt + reportGeneratorVersion = '1.4.6' + teamscaleClientVersion = '0.3.3' // When upgrading JaCoCo to a newer version make sure to // check the comment in the AnalyzerCache.java and CachingInstructionsBuilder.java @@ -23,7 +23,7 @@ ext { // For deploying Jars you have to configure SSH keys locally and on the CQSE share server. // 1. Generate a new key using ssh-keygen or use the existing key at ~/.ssh/id_rsa(.pub) - // 2. Tell Timo Pawelka to copy your public key ~/.ssh/id_rsa to ext1 at ssh authorized_keys + // 2. Ask Timo Pawelka to add your public key to the authorized_keys file for the CQSE file share (ext1) // 3. Add the server keys to your known hosts: ssh-keyscan -p 2222 ext1.cqse.eu >> ~/.ssh/known_hosts // - Simple "ssh ext1.cqse.eu" won't work because you need the rsa version of the server key for the SSH library // used by the gradle-ssh-plugin to work diff --git a/teamscale-gradle-plugin/src/main/kotlin/com/teamscale/BuildVersion.kt b/teamscale-gradle-plugin/src/main/kotlin/com/teamscale/BuildVersion.kt index 7de57b693..f7e6d67d2 100644 --- a/teamscale-gradle-plugin/src/main/kotlin/com/teamscale/BuildVersion.kt +++ b/teamscale-gradle-plugin/src/main/kotlin/com/teamscale/BuildVersion.kt @@ -5,10 +5,10 @@ object BuildVersion { /** Extracts the plugin's version from the jar's manifest file. */ val buildVersion: String - get() = "0.5.4" + get() = "0.5.5" /** Extracts the agent's version from the jar's manifest file. */ val agentVersion: String - get() = "15.2.0" + get() = "15.3.0" }