From e909e62aedfa72801fb3744896b47a70da5e469b Mon Sep 17 00:00:00 2001 From: Jorge Miguel Pinto Date: Wed, 29 Nov 2023 18:07:28 +0000 Subject: [PATCH] Release v3.7.0. --- README.md | 6 ++++++ core/version.go | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 695a7210..c93574a6 100644 --- a/README.md +++ b/README.md @@ -602,6 +602,12 @@ The measuring of space is done as follows: - Acme editor: https://www.youtube.com/watch?v=dP1xVpMPn8M ## Releases +- 2023/11/29: v3.7.0 (103 commits) + - improved godebug with support to js/wasm + - allow access to godebug from the cmd line (useful for js/wasm) + - added cmd sorttextlines + - lsproto improvements + - several crash fixes - 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 diff --git a/core/version.go b/core/version.go index 6c98bf60..48cc619a 100644 --- a/core/version.go +++ b/core/version.go @@ -10,9 +10,9 @@ 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.7.0" - //typ := "release" + typ := "release" //typ := "rc" // release candidate - typ := "alpha" // development + //typ := "alpha" // development return taggedVersion(v, typ) } func taggedVersion(v string, typ string) string {