From 9992fa83c16fc8612b33ad93ad29fbb524d1630c Mon Sep 17 00:00:00 2001 From: aarzilli Date: Wed, 15 Aug 2018 18:37:07 +0200 Subject: [PATCH] all: Bump to v1.1.0 Add new version to CHANGELOG and update internal version. Thank you @jaym, @slp, @yasushi-saito, @acshekhara1, @benc153, @yuval-k, @functionary, @psanford @giuscri, @jsoref, @Carpetsmoker, @PatrickSchuster, @aarzilli, @derekparker, @ramya-rao-a and @dlsniper. --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ pkg/version/version.go | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89a15d5af0..00e3db4116 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,46 @@ This project adheres to Semantic Versioning. All changes mention the author, unless contributed by me (@derekparker). +## [1.1.0] 2018-08-15 + +### Added + +- Go 1.11 support (@aarzilli) +- Improvements to Delve logging (@aarzilli, @derekparker) +- Show global variables in disassembly (@aarzilli) +- Support for inlined calls (@aarzilli, @derekparker, @jaym) +- Support dwz compressed debug symbols (@slp) +- Support for debug info in a separate file (@slp) +- Let target process access the tty when running in headless mode on linux/native and darwin/gdbserial (@aarzilli) +- Commands `up` and `down` (@yasushi-saito) +- Flag to print stacktrace of all goroutines (@acshekhara1) +- Command `edit` (@benc153) +- Allow headless instances to keep running without a connected client (@aarzilli) +- Add `StartLoc` to `api.Goroutine` containing the starting location of each goroutine (@aarzilli) +- Preliminary support for function call injection with Go 1.11 (@aarzilli) +- Ability to read list of deferred calls of a goroutine (@aarzilli) + +### Fixed + +- Fixed crashes when configuration file can not be created (@derekparker, @yuval-k, @aarzilli) +- Fixed reported location of the go statement of goroutines (@derekparker) +- Allow evaluation of constants specified without the full package path (@aarzilli) +- Fixed some integer arithmetics bugs in proc (@functionary) +- Respect load configuration after reslicing a map (@aarzilli) +- Fixed race condition between Halt and process death in the linux native backend (@aarzilli) +- Support core files generated by gdb (@psanford) +- Fixed evaluation of breakpoint conditions containing a single boolean variable (@aarzilli) +- Miscellaneous bugs in the debug_line state machine (@aarzilli) + +### Changed + +- Removed redundant/obsolete methods of proc.Process Halt and Kill, general cleanup of native backends (@aarzilli) +- Improved documentation (@giuscri, @jsoref, @Carpetsmoker, @PatrickSchuster, @aarzilli, @derekparker, @ramya-rao-a, @dlsniper) +- Workaround in the gdbserial backend for broken version 902 of debugserver (@aarzilli) +- Changed operators || and && to short-circuit the evaluation of their arguments, like in Go (@aarzilli) +- Mark shadowed arguments as shadowed (@aarzilli) +- Allow syntax "package/path".varname to specify the full package path of a variable, in case disambiguating between multiple packages with the same name is necessary (@aarzilli) + ## [1.0.0] 2018-02-19 ### Added diff --git a/pkg/version/version.go b/pkg/version/version.go index c98a142125..1990ba1245 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -14,7 +14,7 @@ type Version struct { var ( // DelveVersion is the current version of Delve. DelveVersion = Version{ - Major: "1", Minor: "0", Patch: "0", Metadata: "", + Major: "1", Minor: "1", Patch: "0", Metadata: "", Build: "$Id$", } )