File tree 2 files changed +25
-1
lines changed 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,30 @@ This project adheres to Semantic Versioning.
5
5
6
6
All changes mention the author, unless contributed by me (@derekparker ).
7
7
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
+
8
32
## [ 0.9.0-alpha] 2015-09-19
9
33
10
34
### Added
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
21
21
"github.com/spf13/cobra"
22
22
)
23
23
24
- const version string = "0.9 .0-alpha"
24
+ const version string = "0.10 .0-alpha"
25
25
26
26
var (
27
27
Log bool
You can’t perform that action at this time.
0 commit comments