diff --git a/CHANGELOG.md b/CHANGELOG.md index 3251288347fff2926cc51c840f922ff33e1a4908..bad1eb716a95302953ae1aa26a0676cbf152b1b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning. +## [1.5.0] 2020-07-29 + +### Added + +- Go 1.15 support (#2011, @aarzilli) +- Added the `reload` command that restarts the debugging session after recompiling the program (#1971, @alexsaezm) +- Better support for printing pointers in the C part of a cgo program (#1997, @aarzilli) +- Some support for DWARFv5 (#2090, @aarzilli) + +### Fixed + +- Fixed trace subcommand when the `-p` option is used (#2069, @chainhelen) +- Nil pointer dereference when printing tracepoints (#2071, @aarzilli) +- Internal debugger error when printing the goroutine list of a corrupted or truncated core file (#2070, @aarzilli) +- Do not corrupt the list of source files whenever a plugin (or dynamically loaded library) is loaded (#2075, @aarzilli) +- Fixed current file/line reported after a segfault on macOS that was wrong under certain circumstances (#2081, @aarzilli) +- Internal debugger error when reading global variables of types using unsupported debug_info features (#2105, #2106, #2110, @aarzilli, @b00f) + +### Changed + +- Support for stack trace requests in DAP and other DAP improvements (#2056, #2093, #2099, #2103, @polinasok) +- Delve will step inside a private runtime function call when it is already inside the runtime package (#2061, @aarzilli) +- Updated cosiner/argv dependency to v0.1.0 (#2088, @gadelkareem) +- Improvements to documentation and error messages (#2068, #2084, #2091, @aarzilli, @bhcleek, @letientai299) + ## [1.4.1] 2020-05-22 ### Added diff --git a/_scripts/gen-travis.go b/_scripts/gen-travis.go index 899568b099a395c0178dc8870994083fc3e9cdae..23d90762680d60dfec3b237ac19745f6593bfde2 100644 --- a/_scripts/gen-travis.go +++ b/_scripts/gen-travis.go @@ -117,7 +117,12 @@ jobs: script: >- if [ $TRAVIS_OS_NAME = "linux" ] && [ $go_32_version ]; then docker pull i386/centos:7; - docker run -v $(pwd):/delve --privileged i386/centos:7 /bin/bash -c "set -x && \ + docker run \ + -v $(pwd):/delve \ + --env TRAVIS=true \ + --env CI=true \ + --privileged i386/centos:7 \ + /bin/bash -c "set -x && \ cd delve && \ yum -y update && yum -y upgrade && \ yum -y install wget make git gcc && \ diff --git a/pkg/version/version.go b/pkg/version/version.go index bda606147ff48b58bde39e20b9e11378eaa4db46..ca5318932770ca063fc9885b4764c30bfaf8a199 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: "4", Patch: "1", Metadata: "", + Major: "1", Minor: "5", Patch: "0", Metadata: "", Build: "$Id$", } )