Skip to content

Commit f07be48

Browse files
authored
*: CHANGELOG and bump to version 1.20.0 (#3209)
Thank you @Frederick888, @emad-elsaid, @cuiweixie, @qmuntal, @suzmue, @cuishuang, @aviramha, @dlipovetsky, @Foxboron, @gfszr.
1 parent e5006c1 commit f07be48

File tree

4 files changed

+35
-11
lines changed

4 files changed

+35
-11
lines changed

.teamcity/settings.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,26 +35,26 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
3535
version = "2020.2"
3636

3737
val targets = arrayOf(
38-
"linux/amd64/1.17",
3938
"linux/amd64/1.18",
4039
"linux/amd64/1.19",
40+
"linux/amd64/1.20",
4141
"linux/amd64/tip",
4242

43-
"linux/386/1.19",
43+
"linux/386/1.20",
4444

45-
"linux/arm64/1.19",
45+
"linux/arm64/1.20",
4646
"linux/arm64/tip",
4747

48-
"windows/amd64/1.19",
48+
"windows/amd64/1.20",
4949
"windows/amd64/tip",
5050

51-
"windows/arm64/1.19",
51+
"windows/arm64/1.20",
5252
"windows/arm64/tip",
5353

54-
"mac/amd64/1.19",
54+
"mac/amd64/1.20",
5555
"mac/amd64/tip",
5656

57-
"mac/arm64/1.19",
57+
"mac/arm64/1.20",
5858
"mac/arm64/tip"
5959
)
6060

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to Semantic Versioning.
55

6+
## [1.20.0] 2022-12-07
7+
8+
### Added
9+
10+
- Support for Go 1.20 (#3129, #3196, #3180, @cuiweixie, @qmuntal, @aarzilli)
11+
- Support for Windows/arm64 (gated by a build tag) (#3063, #3198, #3200, @qmuntal)
12+
- Compatibility with coredumpctl (#3195, @Foxboron)
13+
14+
### Fixed
15+
16+
- Improve evaluation of type casts (#3146, #3149, #3186, @aarzilli)
17+
- DAP: Added type to response of EvaluateRequest (#3172, @gfszr)
18+
- Cgo stacktraces on linux/arm64 (#3192, @derekparker)
19+
- Debugserver crashes on recent versions of macOS when $DYLD_INSERT_LIBRARIES is set (#3181, @aviramha)
20+
- Stacktraces and stepping on Go 1.19.2 and later on macOS (#3204, @aarzilli)
21+
- Attaching to processes used by a different user on Windows (#3162, @aarzilli)
22+
- Nil pointer dereference when current address is not part of a function (#3157, @aarzilli)
23+
24+
### Changed
25+
26+
- Change behavior of exec command so that it looks for the executable in the current directory (#3167, @derekparker)
27+
- DAP shows full value when evaluating log messages (#3141, @suzmue)
28+
- Wait time is no longer reported for parked goroutines (its value was always incorrect) (#3139, @aarzilli)
29+
- Miscellaneous improvements to documentation and error messages (#3119, #3117, #3154, #3161, #3169, #3188, @aarzilli, @derekparker, @cuishuang, @Frederick888, @dlipovetsky)
30+
631
## [1.9.1] 2022-08-23
732

833
### Added

pkg/goversion/compat.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88

99
var (
1010
MinSupportedVersionOfGoMajor = 1
11-
MinSupportedVersionOfGoMinor = 17
11+
MinSupportedVersionOfGoMinor = 18
1212
MaxSupportedVersionOfGoMajor = 1
13-
MaxSupportedVersionOfGoMinor = 19
13+
MaxSupportedVersionOfGoMinor = 20
1414
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)
1515
goTooOldWarn = fmt.Sprintf("WARNING: undefined behavior - Go version %%s is too old for this version of Delve (minimum supported version %d.%d)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
1616
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)

pkg/version/version.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ type Version struct {
1717
var (
1818
// DelveVersion is the current version of Delve.
1919
DelveVersion = Version{
20-
Major: "1", Minor: "9", Patch: "1", Metadata: "",
21-
//TODO(aarzilli): before updating this to 1.8.0 re-enable staticcheck test
20+
Major: "1", Minor: "20", Patch: "0", Metadata: "",
2221
Build: "$Id$",
2322
}
2423
)

0 commit comments

Comments
 (0)