Skip to content

Commit 6e72c26

Browse files
committed
release 0.7.2 (and gdbstub_arch 0.3.1)
1 parent 8ff0422 commit 6e72c26

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGELOG.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@ 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.7.2
6+
7+
#### Bugfixes
8+
9+
- Add workaround for vCont packets that specify a '0' (Any) thread-id
10+
- For more context, see [`e9a5296c`](https://github.com/daniel5151/gdbstub/commit/e9a5296c4d02f4b5b73d5738654a33d01afa8711)
11+
12+
#### Internal Improvements
13+
14+
- Various README tweaks
15+
- Various clippy lint fixes
16+
- Fix incorrect valid-addr check in armv4t example
17+
518
# 0.7.1
619

720
#### New Protocol Extensions
@@ -180,8 +193,6 @@ Cheers!
180193
- Enable logging for responses with only alloc [\#78](https://github.com/daniel5151/gdbstub/pull/78) ([gz](https://github.com/gz))
181194
- Lots of internal refactoring and cleanup
182195

183-
#### Bugfixes
184-
185196
# 0.5.0
186197

187198
While the overall structure of the API has remained the same, `0.5.0` does introduce a few breaking API changes that require some attention. That being said, it should not be a difficult migration, and updating to `0.5.0` from `0.4` shouldn't take more than 10 mins of refactoring.

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.7.1"
5+
version = "0.7.2"
66
license = "MIT OR Apache-2.0"
77
edition = "2018"
88
readme = "README.md"

gdbstub_arch/CHANGELOG.md

+4
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.3.1
6+
7+
- RISC-V: List all integer registers (for lldb compatibility) [\#149](https://github.com/daniel5151/gdbstub/pull/149) ([danlehmann](https://github.com/danlehmann))
8+
59
# 0.3.0
610

711
#### Breaking Arch Changes

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.3.0"
5+
version = "0.3.1"
66
license = "MIT OR Apache-2.0"
77
edition = "2018"
88
readme = "README.md"

0 commit comments

Comments
 (0)