Skip to content

Commit

Permalink
update version to 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lyondhill committed Mar 6, 2017
1 parent 265d52a commit fb70ca0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 2.0.4 (March 6, 2017)

BUG FIXES:
- Add idempotency to linux systemd service start [#399](https://github.com/nanobox-io/nanobox/pull/399)
- Fix an issue where the dev container disappeard unexpectedly [#402](https://github.com/nanobox-io/nanobox/pull/402)
- Fix an issue that caused us to pull s3 for updates every time [#396](https://github.com/nanobox-io/nanobox/pull/396)
- Fix an issue with /etc/exports on osx [#392](https://github.com/nanobox-io/nanobox/pull/392)

FEATURES:
- Make linux startup system more flexable [#397](https://github.com/nanobox-io/nanobox/pull/397)
- Optimize display of summarized test [#395](https://github.com/nanobox-io/nanobox/pull/395)
- Add a check in for boxfile existance [#388](https://github.com/nanobox-io/nanobox/pull/388)

## 2.0.3 (February 23, 2017)

BUG FIXES:
Expand Down
2 changes: 1 addition & 1 deletion commands/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var (

// versionFn ...
func versionFn(ccmd *cobra.Command, args []string) {
v := "2.0.3"
v := "2.0.4"
update, _ := models.LoadUpdate()
md5Parts := strings.Fields(update.CurrentVersion)
md5 := ""
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func setupBugsnag() {
APIKey: bugsnagToken,
Logger: bugLog{},
Synchronous: true,
AppVersion: "2.0.3",
AppVersion: "2.0.4",
PanicHandler: func() {}, // the built in panic handler reexicutes our code
})

Expand Down

0 comments on commit fb70ca0

Please sign in to comment.