diff --git a/CHANGELOG.md b/CHANGELOG.md index a0614c3..52a606f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.3.1 (03.02.2016) + +### Bugfix +- This is a bug-fix that was introduced as of `v0.2.0`. Compiled binary was trying to read off of the fs for the templates and default pipes. By using `go generate` we can still test the behavior of the extensions while embedding the text into the compiled binary. + ## 0.3.0 (03.01.2016) ### Features diff --git a/version.go b/version.go index ebb198b..80b6d8d 100644 --- a/version.go +++ b/version.go @@ -13,5 +13,5 @@ const ( // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. - VersionPrerelease = "dev" + VersionPrerelease = "" )