-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version to 0.2.1 + add CHANGELOG.md
- Loading branch information
1 parent
0aacb25
commit 05ec004
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
# 0.2.1 | ||
|
||
- Add x86_86 support [\#11](https://github.com/daniel5151/gdbstub/pull/11) ([jamcleod](https://github.com/jamcleod)) | ||
- Add Mips and Mips64 support [\#13](https://github.com/daniel5151/gdbstub/pull/13) ([starfleetcadet75](https://github.com/starfleetcadet75)) | ||
- Documentation improvements | ||
- Document PC adjustment requirements in `Target::resume` | ||
- Add docs on handling non-fatal invalid memory reads/writes in `Target::read/write_addrs`. | ||
|
||
# 0.2.0 | ||
|
||
_start of changelog_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "gdbstub" | ||
description = "An implementation of the GDB Remote Serial Protocol in Rust" | ||
authors = ["Daniel Prilik <[email protected]>"] | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
license = "MIT" | ||
edition = "2018" | ||
readme = "README.md" | ||
|