Skip to content

Commit f35cae1

Browse files
committed
release 0.7.3
1 parent f5354b6 commit f35cae1

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ 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.3
6+
7+
#### New Features
8+
9+
- Add new `core_error` feature, to have `GdbStubError` impl `core::error::Error`. [\#154](https://github.com/daniel5151/gdbstub/pull/154) ([ultimaweapon](https://github.com/ultimaweapon))
10+
- _Note:_ Out of an abundance of caution, this has been put behind a
11+
feature-flag, as while `gdbstub` doesn't claim a strict MSRV at this time,
12+
it seemed unwise to have a PATCH release break folks stuck on a pre-1.81
13+
Rust toolchain.
14+
515
# 0.7.2
616

717
#### Bugfixes

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

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,17 @@ While some of these projects may use older versions of `gdbstub`, they can nonet
132132
If you end up using `gdbstub` in your project, consider opening a PR and adding it to this list!
133133

134134
- Virtual Machine Monitors (VMMs)
135-
- [crosvm](https://google.github.io/crosvm/running_crosvm/advanced_usage.html#gdb-support) - The Chrome OS VMM
135+
- [OpenVMM/OpenHCL](https://openvmm.dev/reference/dev_feats/gdbstub.html) - (Microsoft) Modular, cross-platform, async-first VMM, with paravisor support
136+
- [firecracker](https://github.com/firecracker-microvm/firecracker/blob/main/docs/gdb-debugging.md) - (Amazon) Secure and fast microVMs for serverless computing
137+
- [crosvm](https://google.github.io/crosvm/running_crosvm/advanced_usage.html#gdb-support) - (Google) The Chrome OS VMM
136138
- [cloud-hypervisor](https://github.com/cloud-hypervisor/cloud-hypervisor) - A VMM for modern cloud workloads
137139
- [uhyve](https://github.com/hermitcore/uhyve) - A minimal hypervisor for [RustyHermit](https://github.com/hermitcore/rusty-hermit)
138140
- OS Kernels (using `gdbstub` on `no_std`)
141+
- [COCONUT-SVSM](https://github.com/coconut-svsm/svsm) - VM Service Module (SVSM), supporting Confidential VMs (CVMs)
139142
- [`betrusted-io/xous-core`](https://github.com/betrusted-io/xous-core/blob/b471b604/kernel/src/debug/gdb.rs) - The Xous microkernel operating system
140143
- [`vmware-labs/node-replicated-kernel`](https://github.com/vmware-labs/node-replicated-kernel/tree/57f953c2/kernel/src/arch/x86_64/gdb) - An (experimental) research OS kernel for x86-64 (amd64) machines
141144
- Emulators
145+
- [obliteration](https://github.com/obhq/obliteration) - Kernel + VMM for running PS4 software on PCs
142146
- [solana_rbpf](https://github.com/solana-labs/rbpf) - VM and JIT compiler for eBPF programs
143147
- [rustyboyadvance-ng](https://github.com/michelhe/rustboyadvance-ng/) - Nintendo Gameboy Advance emulator and debugger (ARMv4T)
144148
- [gamegirl](https://github.com/anellie/gamegirl) - A Gameboy (Color/Advance) emulator

0 commit comments

Comments
 (0)