Bump version to 0.8.0-alpha

This commit is contained in:
Derek Parker 2015-09-05 12:29:46 -05:00
parent c6ebd80905
commit 3fc823b781
2 changed files with 20 additions and 1 deletions

@ -5,6 +5,25 @@ This project adheres to Semantic Versioning.
All changes mention the author, unless contributed by me (@derekparker).
## [0.8.0-alpha] 2015-09-05
### Added
- New command: 'frame'. Accepts a frame number and a command to execute in the context of that frame. (@aarzilli)
- New command: 'goroutine'. Accepts goroutine ID and optionally a command to execute within the context of that goroutine. (@aarzilli)
- New subcommand: 'exec'. Allows user to debug existing binary.
- Add config file and add config options for command aliases. (@tylerb)
### Changed
- Add Go 1.5 to travis list.
- Stop shortening file paths from API, shorten instead in terminal UI.
- Implemented several improvements for `next`ing through highly parallel programs.
- Visually align registers. (@paulsmith)
### Fixed
- Fixed output of 'goroutines' command.
- Stopped preserving temp breakpoints on restart.
- Added support for parsing multiple DWARF file tables. (@Omie)
## [0.7.0-alpha] 2015-08-14
### Added

@ -21,7 +21,7 @@ import (
"github.com/spf13/cobra"
)
const version string = "0.7.0-alpha"
const version string = "0.8.0-alpha"
var (
Log bool