Skip to content

Commit

Permalink
Fix version numbers. Update release process docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
brikis98 committed Apr 14, 2016
1 parent 0844403 commit 0ca0a18
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.4.2 (April 15, 2016)

* BUG: Fix version number.

# 0.4.1 (April 14, 2016)

* TWEAK: Use gox for cross-compile.
* BUG: Fix extra newline issue in binaries.
* BUG: Fix issues in `circle.yml`.

# 0.4.0 (April 14, 2016)

* REFACTOR: The AWS region is passed in via the `--region` param.
Expand Down
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,15 @@ To run a specific test:

```bash
go test -run MY_TEST_NAME
```
```

### Release process

1. Update the version number in `main.go`.
1. Rebuild binaries by running `cross-compile.sh`.
1. Update `CHANGELOG.md`.
1. Commit all changes.
1. Create a new release using the [GitHub Release Page](https://github.com/josh-padnick/ec2-snapper/releases). Make
sure to use the same version number as in step #1 and the changelog from step #3.

TODO: automate this process!
Binary file modified bin/darwin_386/ec2-snapper
Binary file not shown.
Binary file modified bin/darwin_amd64/ec2-snapper
Binary file not shown.
Binary file modified bin/linux_386/ec2-snapper
Binary file not shown.
Binary file modified bin/linux_amd64/ec2-snapper
Binary file not shown.
Binary file modified bin/linux_arm/ec2-snapper
Binary file not shown.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func main() {
}

// CLI stuff
c := cli.NewCLI("ec2-snapper", "0.4.1")
c := cli.NewCLI("ec2-snapper", "0.4.2")
c.Args = os.Args[1:]

c.Commands = map[string]cli.CommandFactory{
Expand Down

0 comments on commit 0ca0a18

Please sign in to comment.