Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinmm80 committed Jun 10, 2015
1 parent ee15194 commit 92636eb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# unreleased

# v0.1.2
* Fix --help and --version flags
* Vendor dependencies with Godep

# v0.1.1
* Attach stdin to allow running interactive processes wrapped with summon
* Changed name from 'cauldron' to 'summon'
Expand Down
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,8 @@ View help and all flags with `summon -h`.

## Development

Install dependencies

```
xargs -L1 go get <Godeps
```
Dependencies are vendored with [godep](https://github.com/tools/godep).
To make them available, add `$PWD/Godeps/_workspace` to your `$GOPATH`.

Run the project with `go run *.go`.

Expand Down
2 changes: 1 addition & 1 deletion cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func RunCLI() error {
app := cli.NewApp()
app.Name = "summon"
app.Usage = "Parse secrets.yml and export environment variables"
app.Version = "0.1.2"
app.Version = VERSION
app.Writer = CLIWriter
app.Flags = command.Flags
app.Action = command.Action
Expand Down
3 changes: 3 additions & 0 deletions version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package main

const VERSION = "0.1.2"

0 comments on commit 92636eb

Please sign in to comment.