*: Release v1.25.0 (#4029)

This commit is contained in:
Derek Parker 2025-06-13 21:35:07 -07:00 committed by GitHub
parent 99ec109dd3
commit a40a5e057b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 1 deletions

View File

@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
This project adheres to Semantic Versioning.
## [1.25.0] 2025-04-16
### Added
- Go 1.25 support (#4014, @aarzilli) (more work went into the 1.24.2 and earlier releases)
### Fixed
- Fixed several panics found via telemetry (#4026, #4018, #4017, #4015 @aarzilli)
- Fixed git hash in version output (#3987, @codeaucafe)
- Fix development version parsing (#3999, @aarzilli)
- Fix call injection in newer macOS versions (#3988, @aarzilli)
- Fix typo in goroutines help output (#4024, @jersey1dev)
### Changed
- Internal breakpoints (panic, throw) are excluded from DAP response (#4027, @ConradIrwin)
## [1.24.2] 2025-04-10
### Added

View File

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