Bump to version v0.12.2 (#788)
This commit is contained in:
parent
01a1b35620
commit
f605716160
27
CHANGELOG.md
27
CHANGELOG.md
@ -5,6 +5,33 @@ This project adheres to Semantic Versioning.
|
|||||||
|
|
||||||
All changes mention the author, unless contributed by me (@derekparker).
|
All changes mention the author, unless contributed by me (@derekparker).
|
||||||
|
|
||||||
|
## [0.12.2] 2017-04-13
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fix infinite recursion with pointer loop (@aarzilli)
|
||||||
|
- Windows: Handle delayed events (@aarzilli)
|
||||||
|
- Fix Println call to be Printf (@derekparker)
|
||||||
|
- Fix build on OSX (@koichi)
|
||||||
|
- Mark malformed maps as unreadable instead of panicing (@aarzilli)
|
||||||
|
- Fixed broken benchmarks (@derekparker)
|
||||||
|
- Improve reliability of certain tests (@aarzilli)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Go 1.8 Compatability (@aarzilli)
|
||||||
|
- Add Go 1.8 to test matrix (@derekparker)
|
||||||
|
- Support NaN/Inf float values (@aarzilli)
|
||||||
|
- Handle absence of stack barriers in Go 1.9 (@drchase)
|
||||||
|
- Add gdlv to list of alternative UIs (@aarzilli)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Optimized 'trace' functionality (@aarzilli)
|
||||||
|
- Internal refactoring to support mutliple backends, core dumps, and more (@aarzilli) [Still ongoing]
|
||||||
|
- Improve stacktraces (@aarzilli)
|
||||||
|
- Improved documentation for passing flags to debugged process (@njason)
|
||||||
|
|
||||||
## [0.12.1] 2017-01-11
|
## [0.12.1] 2017-01-11
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@ -13,7 +13,7 @@ type Version struct {
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
// DelveVersion is the current version of Delve.
|
// DelveVersion is the current version of Delve.
|
||||||
DelveVersion = Version{Major: "0", Minor: "12", Patch: "1", Metadata: ""}
|
DelveVersion = Version{Major: "0", Minor: "12", Patch: "2", Metadata: ""}
|
||||||
)
|
)
|
||||||
|
|
||||||
func (v Version) String() string {
|
func (v Version) String() string {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user