Skip to content

Commit

Permalink
publish v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jgramoll committed Jul 31, 2019
1 parent 1fb1065 commit bacb655
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ dist/
vendor/
.envrc
terraform-provider-jenkins
sonar/
report.json
coverage.out
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# terraform-provider-jenkins Change Log

## 0.0.2

[1fb1065] fix rest of initial resources should be functional now
[50bf38b] (origin/master) get gerrit trigger events
[885918b] finish gerrit trigger project and branch
[4e2f3e4] fix build discarder strategies and tests
[3450264] fix build discarder property
[f5d9e25] fix client tests
[cf1a857] add more types
[a5d34f1] add git scm

## 0.0.2-alpha

- fix install script
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,4 @@ resource "jenkins_job_gerrit_branch" "main" {
1. import resources
1. Refactor unmarshall to use map
1. Refactor types = reflect checks
1. Fragile TestAccJobBuildDiscarderPropertyStrategyLogRotatorBasic test
2 changes: 1 addition & 1 deletion publish
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=v0.0.2-alpha
version=v0.0.2
git tag -a $version -m $version
git push origin $version
goreleaser release --rm-dist
5 changes: 5 additions & 0 deletions test
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#!/bin/bash
root_dir=`dirname "$0"`

pushd $root_dir

TF_ACC=1 go test ./... -v $@

popd &> /dev/null

0 comments on commit bacb655

Please sign in to comment.