Skip to content

Commit

Permalink
Release v3.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmigpin committed Nov 29, 2023
1 parent 72d0963 commit e909e62
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e909e62

Please sign in to comment.