From 279a8a792e2748ba07be9ca15688d1871c0f1a5f Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Mon, 19 Feb 2018 12:33:47 -0800 Subject: [PATCH] all: Bump to v1.0.0 (#1126) Add new version to CHANGELOG and update internal version. --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ pkg/version/version.go | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03b5a042..08a088eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,45 @@ This project adheres to Semantic Versioning. All changes mention the author, unless contributed by me (@derekparker). +## [1.0.0] 2018-02-19 + +### Added + +- Print DWARF location expression with `whatis` (@aarzilli) +- Use `DW_AT_producer` to warn about optimized code (@aarzilli) +- Use constants to describe variable value (@aarzilli) +- Use `DW_AT_decl_line` to determine variable visibility (@aarzilli) +- `-offsets` flag for `stack` command (@aarzilli) +- Support CGO stacktraces (@aarzilli) +- Disable optimizations in C compiler (@aarzilli) +- `--output` flag to configure output binary (@Carpetsmoker) +- Support `DW_OP_piece`, `DW_OP_regX`, `DW_OP_fbreg` (@aarzilli) +- Support `DW_LNE_define_file` (@aarzilli) +- Support more type casts (@aarzilli) + +### Fixed + +- Disable file path case normalization on OSX (@aarzilli) +- Support Mozilla RR 5.1.0 (@aarzilli) +- Terminal no longer crashes when process exits during `next` (@aarzilli) +- Fix TestCoreFPRegisters on Go 1.9 (@aarzilli) +- Avoid scanning system stack if it's not executing CGO (@aarzilli) +- Locspec "+0" should always evaluate to the current PC (@aarzilli) +- Handle `DW_LNE_end_of_sequence` correctly (@aarzilli) +- Top level interface variables may have 0 address (@aarzilli) +- Handle `DW_TAG_subprogram` with a nochildren abbrev (@aarzilli) +- StepBreakpoint handling (@aarzilli) + +### Changed + +- Documentation improvements (@grahamking) +- Removed limitation of exit notifications (@dlsniper) +- Use `go env GOPATH` for install path +- Disable test caching (@aarzilli) +- Disable `-a` and use `all=` for Go 1.10 building (@aarzilli) +- Automatically deref interfaces on member access (@aarzilli) +- Replace all uses of `gosymtab/gopclntab` with `.debug_line` section (@aarzilli) + ## [1.0.0-rc.2] 2017-10-16 ### Added diff --git a/pkg/version/version.go b/pkg/version/version.go index 5c767640..c98a1421 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: "rc.2", + Major: "1", Minor: "0", Patch: "0", Metadata: "", Build: "$Id$", } ) -- GitLab