Skip to content

Commit eb9d7be

Browse files
committed
release gdbstub 0.6.3 and gdbstub_arch 0.2.4
1 parent 78134a3 commit eb9d7be

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file.
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
# 0.6.3
6+
7+
#### New Features
8+
9+
- `SingleRegisterAccess`: Support reporting unavailable regs [\#107](https://github.com/daniel5151/gdbstub/pull/107) ([ptosi](https://github.com/ptosi))
10+
511
# 0.6.2
612

713
#### New Protocol Extensions

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gdbstub"
33
description = "An implementation of the GDB Remote Serial Protocol in Rust"
44
authors = ["Daniel Prilik <[email protected]>"]
5-
version = "0.6.2"
5+
version = "0.6.3"
66
license = "MIT OR Apache-2.0"
77
edition = "2018"
88
readme = "README.md"

gdbstub_arch/CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file.
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
# 0.2.4
6+
7+
- Add support for AArch64 [\#109](https://github.com/daniel5151/gdbstub/pull/109) ([ptosi](https://github.com/ptosi))
8+
59
# 0.2.3
610

711
- Fix missing reg_id mapping in `Armv4t` (24 => Fps)
@@ -12,7 +16,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1216

1317
# 0.2.1
1418

15-
- Removed all remaining instances of `SingleStepGdbBehavior::Unknown` [\#62](https://github.com/daniel5151/gdbstub/pull/95) ([bet4it](https://github.com/bet4it))
19+
- Removed all remaining instances of `SingleStepGdbBehavior::Unknown` [\#95](https://github.com/daniel5151/gdbstub/pull/95) ([bet4it](https://github.com/bet4it))
1620

1721
# 0.2.0
1822

gdbstub_arch/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "gdbstub_arch"
33
description = "Implementations of `gdbstub::arch::Arch` for various architectures."
44
authors = ["Daniel Prilik <[email protected]>"]
5-
version = "0.2.3"
5+
version = "0.2.4"
66
license = "MIT OR Apache-2.0"
77
edition = "2018"
88
readme = "README.md"

0 commit comments

Comments
 (0)