Skip to content

Commit 856ad78

Browse files
authored
*: release version 1.23.1 (#3816)
Thanks to @Jille, @linchizhen and @arvidfm.
1 parent 059f149 commit 856ad78

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Diff for: CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to Semantic Versioning.
55

6+
## [1.23.1] 2024-09-23
7+
8+
Telemetry notice: starting with version 1.24.0 Delve will begin collecting opt-in telemetry data using the same mechanism used by the toolchain, see https://github.com/golang/go/issues/68384, https://go.dev/doc/telemetry#background, https://github.com/go-delve/delve/issues/3815.
9+
10+
### Fixed
11+
12+
- Debugging on macOS Sequoia (#3799, @aarzilli)
13+
- Various bugs with range-over-func loops (#3808, #3788, @aarzilli)
14+
- Reslice operator did not allow reslicing up to the slice's cap (#3796, @Jille)
15+
- Starlark access to named constants (#3802, @arvidfm)
16+
17+
618
## [1.23.0] 2024-07-16
719

820
Deprecation notice: starting with the next version of Delve version 1 of the API will be removed. Version 2 was added in version 0.12.0 in 2017 and has been the recommended way to connect to Delve since.

Diff for: pkg/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type Version struct {
1717
var (
1818
// DelveVersion is the current version of Delve.
1919
DelveVersion = Version{
20-
Major: "1", Minor: "23", Patch: "0", Metadata: "",
20+
Major: "1", Minor: "23", Patch: "1", Metadata: "",
2121
Build: "$Id$",
2222
}
2323
)

0 commit comments

Comments
 (0)