Skip to content

Commit

Permalink
new master build: 1.0.458
Browse files Browse the repository at this point in the history
  • Loading branch information
esilva-everbridge committed Oct 15, 2018
1 parent c4f452e commit ed64207
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ build: deps check test
@go build

release: build $(TARGET)
@sed -i 's/\"1.0.*\"/\"1.0.'$(COMMIT)'\"/' cmd/root.go
@sed -i 's/VERSION 1.0.*/VERSION 1.0.'$(COMMIT)'/' README.md
@sed -i .bak 's/\"1.0.*\"/\"1.0.'$(COMMIT)'\"/' cmd/root.go
@grep $(COMMIT) cmd/root.go 2> /dev/null && rm cmd/root.go.bak
@sed -i .bak 's/VERSION 1.0.*/VERSION 1.0.'$(COMMIT)'/' README.md
@grep $(COMMIT) README.md 2> /dev/null && rm README.md.bak
@git commit -am "new $(BRANCH) build: $(VERSION)"
@git tag -a v$(VERSION) -m "new $(BRANCH) build: $(VERSION)"
@echo pushing to branch $(BRANCH)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

generate-secure-pillar [global options] command [command options] [arguments...]

## VERSION 1.0.456
## VERSION 1.0.458

## AUTHOR

Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $ generate-secure-pillar keys recurse -d /path/to/pillar/secure/stuff
# show the PGP Key ID used for an element at a path in a file
$ generate-secure-pillar keys path --path "some:yaml:path" --file new.sls
`,
Version: "1.0.456",
Version: "1.0.458",
}

const all = "all"
Expand Down

0 comments on commit ed64207

Please sign in to comment.