From 85ff370e018c031bc88438123bf2766c2c806d63 Mon Sep 17 00:00:00 2001 From: Daniel Prilik Date: Sat, 25 Feb 2023 12:29:59 -0800 Subject: [PATCH] release gdbstub 0.6.4 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5166f1e..435154f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ 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.6.4 + +#### Bugfixes + +- Avoid truncating `X` packets that contain `:` and `,` as part of the payload. [\#121](https://github.com/daniel5151/gdbstub/pull/121) ([709924470](https://github.com/709924470)) + +#### Internal Improvements + +- Various README tweaks +- Remove some `unsafe` code +- CI improvements + - Run no-panic checks on `example_no_std` + - Run CI on docs + # 0.6.3 #### New Features diff --git a/Cargo.toml b/Cargo.toml index af1bb73..f448235 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "gdbstub" description = "An implementation of the GDB Remote Serial Protocol in Rust" authors = ["Daniel Prilik "] -version = "0.6.3" +version = "0.6.4" license = "MIT OR Apache-2.0" edition = "2018" readme = "README.md"