Skip to content

Commit

Permalink
Release 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmigpin committed Dec 12, 2022
1 parent d5e5d5a commit 61a6e74
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 @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 61a6e74

Please sign in to comment.