Version: Bump to 0.9.0-alpha
This commit is contained in:
parent
e02625ab89
commit
7f3ae73471
20
CHANGELOG.md
20
CHANGELOG.md
@ -5,6 +5,26 @@ This project adheres to Semantic Versioning.
|
|||||||
|
|
||||||
All changes mention the author, unless contributed by me (@derekparker).
|
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 <id> 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
|
## [0.8.1-alpha] 2015-09-05
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@ -21,7 +21,7 @@ import (
|
|||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
const version string = "0.8.1-alpha"
|
const version string = "0.9.0-alpha"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
Log bool
|
Log bool
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user