Skip to content

Commit db95b67

Browse files
author
Derek Parker
committed
all: Bump to version 0.10.0-alpha
1 parent 40eec12 commit db95b67

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

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

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

8+
## [0.10.0-alpha] 2015-10-04
9+
10+
### Added
11+
12+
- `set` command, allows user to set variable (currently only supports pointers / numeric values) (@aarzilli)
13+
- All deps are vendored with Godeps and leveraging GO15VENDOREXPERIMENT
14+
- `source` command and `--init` flag to run commands from a file (@aarzilli)
15+
- `clearall` commands now take linespec (@kostya-sh)
16+
- Support for multiple levels of struct nesting during variable eval (i.e. `print foo.bar.baz` now works) (@lukehoban)
17+
18+
### Changed
19+
20+
- Removed hardware assisted breakpoints (for now)
21+
- Remove Go 1.4.2 on Travis builds
22+
23+
### Fixed
24+
25+
- Limit string sizes, be more tolerant of uninitialized memory (@aarzilli)
26+
- `make` commands fixed for >= Go 1.5 on OSX
27+
- Fixed bug where process would not be killed upon detach (@aarzilli)
28+
- Fixed bug trying to detach/kill process that has already exited (@aarzilli)
29+
- Support for "dumb" terminals (@dlsniper)
30+
- Fix bug setting breakpoints at chanRecvAddrs (@aarzilli)
31+
832
## [0.9.0-alpha] 2015-09-19
933

1034
### Added

cmd/dlv/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"github.com/spf13/cobra"
2222
)
2323

24-
const version string = "0.9.0-alpha"
24+
const version string = "0.10.0-alpha"
2525

2626
var (
2727
Log bool

0 commit comments

Comments
 (0)