diff --git a/README.md b/README.md index 2c4d0aa7..f6d9833d 100644 --- a/README.md +++ b/README.md @@ -564,6 +564,12 @@ The measuring of space is done as follows: - Acme editor: https://www.youtube.com/watch?v=dP1xVpMPn8M ## Releases +- 2022/12/12: v3.6.0 (36 commits) + - improved parsing (several tests of simple parsers to lrparsers) + - unified some internal code that had more then one implementation + - lsproto: added "nogotoimpl" cmd line option (don't go to implementation) + - lsproto: sort results for some commands + - crash fixes - 2022/07/26: v3.5.0 (1 commits) - update "golang.org/x/sys" dependency (and others) due to security advisory https://deps.dev/advisory/osv/GO-2022-0493 - 2022/06/27: v3.4.0 (11 commits) diff --git a/core/version.go b/core/version.go index 4402ec17..92ff1004 100644 --- a/core/version.go +++ b/core/version.go @@ -10,8 +10,8 @@ func Version() string { // NOTE: equivalent "go get" version in format x.y.z is 1.x.y (z not used) (ex: 3.3.0 -> 1.3.3). This is done because go doesn't seem to allow having versions bigger then 1 without altering the import paths. v := "3.6.0" - //typ := "release" - typ := "rc" // release candidate + typ := "release" + //typ := "rc" // release candidate //typ := "alpha" // development return taggedVersion(v, typ) }