*: Bump version to 1.0.0-rc.1

This commit is contained in:
Derek Parker 2017-05-05 16:09:30 -07:00 committed by Alessandro Arzilli
parent a843f7944e
commit f6091694b6
3 changed files with 17 additions and 4 deletions

@ -5,12 +5,27 @@ This project adheres to Semantic Versioning.
All changes mention the author, unless contributed by me (@derekparker).
## [NEWEST VERSION] RELEASE DATE
## [1.0.0-rc.1] 2017-05-05
### Added
- Added support for core files (@heschik)
- Added support for lldb-server and debugserver as backend, using debugserver by default on macOS (@aarzilli)
- Added support for Mozilla RR as backend (@aarzilli)
### Fixed
- Detach should correctly kill child process we created (@aarzilli)
- Correctly return error when reading/writing memory of exited process (@aarzilli)
- Fix race condition in test (@hyangah)
- Fix version extraction to support proposals (@allada)
- Tolerate spaces better after command prefixes (@aarzilli)
### Changed
- Updated Mac OSX install instructions (@aarzilli)
- Refactor of core code in proc (@aarzilli)
- Improve list command (@aarzilli)
## [0.12.2] 2017-04-13

@ -6,8 +6,6 @@
[![Build status](https://ci.appveyor.com/api/projects/status/9e9edx1qlp3145j5?svg=true)](https://ci.appveyor.com/project/derekparker/delve)
[![Join the chat at https://gitter.im/derekparker/delve](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/derekparker/delve?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
**This project is currently pre 1.0.**
The Github issue tracker is for **bugs** only. Please use the [developer mailing list](https://groups.google.com/forum/#!forum/delve-dev) for any feature proposals and discussions.
### About Delve

@ -14,7 +14,7 @@ type Version struct {
var (
// DelveVersion is the current version of Delve.
DelveVersion = Version{
Major: "0", Minor: "12", Patch: "2", Metadata: "",
Major: "1", Minor: "0", Patch: "0", Metadata: "rc.1",
Build: "$Id$",
}
)