diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f192cd..0736803e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,26 @@ This project adheres to Semantic Versioning. All changes mention the author, unless contributed by me (@derekparker). +## [0.9.0-alpha] 2015-09-19 + +### Added + +- Basic tab completion to terminal UI (@icholy) +- Added `-full` flag to stack command, prints local vars and function args (@aarzilli) + +### Changed + +- Output of threads and goroutines sorted by ID (@icholy) +- Performance improvement: cache parsed goroutines during halt (@icholy) +- Stack command no longer takes goroutine ID. Use scope prefix command instead (i.e. `goroutine bt`) + +### Fixed + +- OSX: Fix hang when 'next'ing through highly parallel programs +- Absolute path confused as regexp in FindLocation (@aarzilli) +- Use sched.pc instead of gopc for goroutine location +- Exclude dead goroutines from `goroutines` command output (@icholy) + ## [0.8.1-alpha] 2015-09-05 ### Fixed diff --git a/cmd/dlv/main.go b/cmd/dlv/main.go index 2159aea0..51155ce4 100644 --- a/cmd/dlv/main.go +++ b/cmd/dlv/main.go @@ -21,7 +21,7 @@ import ( "github.com/spf13/cobra" ) -const version string = "0.8.1-alpha" +const version string = "0.9.0-alpha" var ( Log bool