diff --git a/CHANGELOG.md b/CHANGELOG.md index dc280bd..714c2a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ -recent /// not yet released +v0.13 -- tip -- 2016 Aug 10 --------------------------- +v0.13 is calm sailing: we have a variety of performance improvements, +a few new config options, several logging improvements, +and essentially no major shockers. + +If parsing the output struct of `repeatr run`, note the changes to format there. + - Internal: Major refactor to package structure. IO components now more clearly separated from sandbox/execution and other bits of repeatr core. - Internal: Types now gathered under `api/*` packages, so that these can be easily linked to help integrate other systems with repeatr. - Bugfix: Several error handling paths in the tar transmat are now considered `WarehouseUnavailableError` (instead of the more red-flaggy `WarehouseIOError`), allowing other sources to be tried. diff --git a/core/cli/cli.go b/core/cli/cli.go index 07e3101..fff1b5f 100644 --- a/core/cli/cli.go +++ b/core/cli/cli.go @@ -15,7 +15,7 @@ func Main(args []string, journal, output io.Writer) { App.Name = "repeatr" App.Usage = "Run it. Run it again." - App.Version = "v0.12+dev" + App.Version = "v0.13" App.Writer = journal