Skip to content

Commit 47f1e4a

Browse files
committed
release 0.7.4
1 parent ed43ae1 commit 47f1e4a

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ 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.4
6+
7+
#### New Protocol Extensions
8+
9+
- `Tracepoints` - Basic [tracepoint extension](https://sourceware.org/gdb/current/onlinedocs/gdb.html/Tracepoints.html) support. [\#160](https://github.com/daniel5151/gdbstub/pull/160) ([cczetier](https://github.com/cczetier))
10+
- _Note:_ Most fundamental tracepoint operations are supported, but there quite a few packets / APIs that are not yet implemented. Please see the module documentation for additional details.
11+
512
# 0.7.3
613

714
#### New Features

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

src/target/ext/tracepoints.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
//! Provide tracepoints for the target.
1+
//! Support for
2+
//! [Tracepoint](https://sourceware.org/gdb/current/onlinedocs/gdb.html/Tracepoints.html)
3+
//! extensions.
4+
//!
5+
//! ## Implementation Status
6+
//!
7+
//! Most fundamental tracepoint operations are supported, but there quite a few
8+
//! packets / APIs that are not yet implemented, such as:
9+
//!
10+
//! - Fast Tracepoints
11+
//! - Tracepoint Conditions
12+
//! - Trace State Variables
13+
//!
14+
//! If you are interested in extending this API to support these additional
15+
//! features, please consider opening an Issue / PR on the `gdbstub` GitHub
16+
//! repo.
17+
218
use crate::target::Arch;
319
use crate::target::Target;
420
use crate::target::TargetResult;

0 commit comments

Comments
 (0)