Skip to content

Commit

Permalink
Merge pull request #22 from jrasell/f_0.0.2_init
Browse files Browse the repository at this point in the history
Update version for 0.0.2 development work and add CHANGELOG.md.
  • Loading branch information
jrasell committed Oct 31, 2017
2 parents 0fe6eae + 2256b86 commit c38b76a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 0.0.1 (30 October 2017)

- Initial release.
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package version
import "fmt"

// Version is the main version number that is being run at the moment.
const Version = "0.0.1"
const Version = "0.0.2"

// VersionPrerelease is 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.
const VersionPrerelease = ""
const VersionPrerelease = "dev"

// Get returns a human readable version of Levant.
func Get() string {
Expand Down

0 comments on commit c38b76a

Please sign in to comment.