diff --git a/CHANGELOG.md b/CHANGELOG.md index db757f0..05dbe1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +1.2.0 +===== +* Added a release script +* Added `-version` flag +* Fixed negation of complex boolean expressions +* gocontracts does not change code if no contracts in the description nor in the + function implementation +* Single-line function definitions are supported +* Updated to go 1.11 + 1.1.1 ===== * Fixed in-place writes so that temporary file lives on the same volume diff --git a/main.go b/main.go index ead053f..1a9d8d8 100644 --- a/main.go +++ b/main.go @@ -27,7 +27,7 @@ func main() { flag.Parse() if *version { - fmt.Println("1.1.1") + fmt.Println("1.2.0") return 0 }