Skip to content

Commit 725411a

Browse files
committed
all: Bump to v1.2.0
Add new version to CHANGELOG and update internal version. Thank you @sbromberger @chainhelen, @dishmaev, @kevin-cantwell, @Russtopia, @slp, @zavla, @the4thamigo-uk, @altimac and @GregorioMartinez.
1 parent c1a39c6 commit 725411a

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,40 @@ This project adheres to Semantic Versioning.
55

66
All changes mention the author, unless contributed by me (@derekparker).
77

8+
## [1.2.0] TO-BE-DETERMINED
9+
10+
### Added
11+
12+
- Go 1.12 support
13+
- Improved `trace` command to show return values and trace pre-built executables or tests (#1379, #1380, #1381, @derekparker)
14+
- Windows Minidump support (#1386, #1387, #1402, @aarzilli)
15+
- Better support for split DWARF symbol files (#1405, #1420, @derekparker, @slp)
16+
- Function call support on macOS (#1324, @derekparker)
17+
- `deferred` command to view the arguments of a deferred call (#1285, #1265, @aarzilli)
18+
- Support for debugging Position Independent Executables (#1358, @aarzilli)
19+
- Type conversions of byte and rune arrays into strings (#1372, @chainhelen)
20+
- Configuration option (source-list-line-color) to change the color of line numbers in listings (#1364, @Russtopia)
21+
- New expression `iface.(data)` to access the concrete value of interface variable `iface`, without having to write a full type assertion (#1340, @aarzilli)
22+
- Support for specifying multiple source files as arguments for `debug`, `trace` and `test` (#1339, @chainhelen)
23+
24+
### Fixed
25+
26+
- Make `edit` command work with vim and neovim (#1451, @the4thamigo-uk)
27+
- Support Linux kernels prior to 2.6.34 (i.e. without PTRACE_GETREGSET) (#1435, @aarzilli)
28+
- Fixed `substitute-path` configuration option on Windows (#1418, @zavla)
29+
- Better performance for ListGoroutines API call (#1440, #1408, @slp, @aarzilli)
30+
- Better performance when loading the value of very large sparse maps (#1392, @aarzilli)
31+
- Other bug fixes (#1377, #1384, #1429, #1434, #1445, @aarzilli)
32+
33+
### Changed
34+
35+
- Changes to where the configuration is stored, conforming to [XDG Base Directory Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) with fallbacks to the current directory when calls to `user.Current` fail (#1455 @GregorioMartinez, @acshekhara1)
36+
- Project moved from github.com/derekparker/delve to github.com/go-delve/delve (@derekparker)
37+
- Switched dependency management to go.mod (@aarzilli, @derekparker, @zavla)
38+
- New build scripts and support building on macOS without the native backend (@aarzilli, @kevin-cantwell)
39+
- Tolerate corrupted memory when reading the goroutine list (#1354, @aarzilli)
40+
- Improved documentation and error messages (@sbromberger, @aarzilli, @derekparker, @chainhelen, @dishmaev, @altimac)
41+
842
## [1.1.0] 2018-08-15
943

1044
### Added

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type Version struct {
1414
var (
1515
// DelveVersion is the current version of Delve.
1616
DelveVersion = Version{
17-
Major: "1", Minor: "1", Patch: "0", Metadata: "",
17+
Major: "1", Minor: "2", Patch: "0", Metadata: "",
1818
Build: "$Id$",
1919
}
2020
)

0 commit comments

Comments
 (0)