*: release version 1.23.1 (#3816)

Thanks to @Jille, @linchizhen and @arvidfm.
This commit is contained in:
Alessandro Arzilli 2024-09-23 20:37:44 +02:00 committed by GitHub
parent 059f149433
commit 856ad78be0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 1 deletions

@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to Semantic Versioning. This project adheres to Semantic Versioning.
## [1.23.1] 2024-09-23
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.
### Fixed
- Debugging on macOS Sequoia (#3799, @aarzilli)
- Various bugs with range-over-func loops (#3808, #3788, @aarzilli)
- Reslice operator did not allow reslicing up to the slice's cap (#3796, @Jille)
- Starlark access to named constants (#3802, @arvidfm)
## [1.23.0] 2024-07-16 ## [1.23.0] 2024-07-16
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. 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.

@ -17,7 +17,7 @@ type Version struct {
var ( var (
// DelveVersion is the current version of Delve. // DelveVersion is the current version of Delve.
DelveVersion = Version{ DelveVersion = Version{
Major: "1", Minor: "23", Patch: "0", Metadata: "", Major: "1", Minor: "23", Patch: "1", Metadata: "",
Build: "$Id$", Build: "$Id$",
} }
) )