Skip to content

Commit

Permalink
Published agent 15.1.1 and teamscale-client 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DreierF committed Oct 7, 2019
1 parent 0460d14 commit 2c634ff
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> inputFiles = new ArrayList<>();

/** The directory to write the XML traces to. */
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions teamscale-gradle-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ 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'
}
}
apply plugin: 'teamscale'
teamscale {
server {
url = 'https://mycompany.com/teamsale/'
url = 'https://mycompany.com/teamscale/'
userName = 'build'
userAccessToken = '7fa5.....'
project = 'example-project-id'
Expand Down

0 comments on commit 2c634ff

Please sign in to comment.