Skip to content

Commit

Permalink
*: Bump version to 1.9.0 (#3054)
Browse files Browse the repository at this point in the history
Update CHANGELOG and add Go1.19 to supported versions.
Thank you @4a6f656c, @pippolo84 and @polinasok.
  • Loading branch information
aarzilli committed Jul 6, 2022
1 parent 0764cc3 commit 3fb2d49
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,25 @@
All notable changes to this project will be documented in this file.
This project adheres to Semantic Versioning.

## [1.9.0] 2022-07-06
### Added
- Support for Go 1.19 (#3038, #3031, #3009, @aarzilli)
- Autocomplete for local variables (#3004, @pippolo84)
- Support for function call injection on arm64 (#2996, @aarzilli)

### Fixed
- Ctrl-C handling on Windows (#3039, @aarzilli)
- Expressions accessing maps with string literals (#3036, @aarzilli)
- Occasional crash caused by race between manual stop and normal stop on macOS (#3021, @aarzilli)
- Pretty-print of register components (#3022, @aarzilli)
- Misc function call injection bugs (#3007, #3002, #3000, @aarzilli)

### Changed
- Improved FreeBSD port (#3019, #2972, #2981, #2982, @4a6f656c)
- Misc test fixes (#3011, #2995, #2979, @polinasok, @aarzilli)
- Misc documentation changes (#2998, #2991, @aarzilli, @polinasok)
- Better autogenerated function skip (#2975, @aarzilli)

## [1.8.3] 2022-04-25
### Added
- Pretty-print time.Time variables (@aarzilli)
Expand Down
2 changes: 1 addition & 1 deletion pkg/goversion/compat.go
Expand Up @@ -10,7 +10,7 @@ var (
MinSupportedVersionOfGoMajor = 1
MinSupportedVersionOfGoMinor = 16
MaxSupportedVersionOfGoMajor = 1
MaxSupportedVersionOfGoMinor = 18
MaxSupportedVersionOfGoMinor = 19
goTooOldErr = fmt.Sprintf("Go version %%s is too old for this version of Delve (minimum supported version %d.%d, suppress this error with --check-go-version=false)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
goTooOldWarn = fmt.Sprintf("WARNING: undefined behavior - Go version %%s is too old for this version of Delve (minimum supported version %d.%d)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
dlvTooOldErr = fmt.Sprintf("Version of Delve is too old for Go version %%s (maximum supported version %d.%d, suppress this error with --check-go-version=false)", MaxSupportedVersionOfGoMajor, MaxSupportedVersionOfGoMinor)
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Expand Up @@ -17,7 +17,7 @@ type Version struct {
var (
// DelveVersion is the current version of Delve.
DelveVersion = Version{
Major: "1", Minor: "8", Patch: "3", Metadata: "",
Major: "1", Minor: "9", Patch: "0", Metadata: "",
//TODO(aarzilli): before updating this to 1.8.0 re-enable staticcheck test
Build: "$Id$",
}
Expand Down

0 comments on commit 3fb2d49

Please sign in to comment.