Skip to content

Commit fa40aa8

Browse files
authored
Merge pull request #75 from bdpiparva/bump-version
Bump up version to 2.0.0
2 parents fff4d03 + 33a2876 commit fa40aa8

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 2.0.0 - 2018-10-26
2+
3+
### Added
4+
- Terminate container once job is finished.
5+
6+
### Bugs
7+
- Fixed validation issue with `enable_private_registry_authentication` and `pull_on_container_create`.
8+
9+
**_Note:_** *Requires GoCD version 18.10.0 and above. Plugin will not work with the older version of GoCD.*
10+
111
## 1.0.2 - 2018-09-04
212
- Removed additional margin from status report pages
313

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
apply plugin: 'java'
2222
apply from: 'plugin-common.gradle'
2323

24-
project.ext.pluginVersion = '1.0.2'
24+
project.ext.pluginVersion = '2.0.0'
2525
project.ext.fullVersion = project.distVersion ? "${project.pluginVersion}-${project.distVersion}" : project.pluginVersion
2626

2727
group = 'cd.go.contrib'
@@ -32,7 +32,7 @@ description = 'GoCD Docker Elastic Agents'
3232
project.ext.pluginDesc = [
3333
id : 'cd.go.contrib.elastic-agent.docker',
3434
version : project.version,
35-
goCdVersion: '18.1.0',
35+
goCdVersion: '18.10.0',
3636
name : 'Docker Elastic Agent Plugin',
3737
description: 'Docker Based Elastic Agent Plugins for GoCD',
3838
vendorName : 'GoCD Contributors',
@@ -58,14 +58,14 @@ sourceSets {
5858
}
5959

6060
dependencies {
61-
compileOnly group: 'cd.go.plugin', name: 'go-plugin-api', version: '18.9.0'
61+
compileOnly group: 'cd.go.plugin', name: 'go-plugin-api', version: '18.10.0'
6262

6363
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
6464
compile group: 'com.spotify', name: 'docker-client', version: '8.14.2'
6565
compile group: 'com.google.guava', name: 'guava', version: '19.0'
66-
compile group: 'joda-time', name: 'joda-time', version: '2.9.9'
67-
compile group: 'commons-io', name: 'commons-io', version: '2.5'
68-
compile group: 'org.freemarker', name: 'freemarker', version: '2.3.23'
66+
compile group: 'joda-time', name: 'joda-time', version: '2.10'
67+
compile group: 'commons-io', name: 'commons-io', version: '2.6'
68+
compile group: 'org.freemarker', name: 'freemarker', version: '2.3.28'
6969

7070
testCompile group: 'junit', name: 'junit', version: '4.12'
7171
testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'

0 commit comments

Comments
 (0)