Skip to content

Commit

Permalink
Release 15.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
agoeb committed Mar 5, 2020
1 parent a98435d commit dea1179
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"

}

0 comments on commit dea1179

Please sign in to comment.