diff --git a/CHANGELOG.md b/CHANGELOG.md index b28ec76..97a4ae4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ 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.7.0 (UNRELEASED) +# 0.7.0 #### Breaking API Changes diff --git a/Cargo.toml b/Cargo.toml index 6e11ef4..445e67b 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.6" +version = "0.7.0" license = "MIT OR Apache-2.0" edition = "2018" readme = "README.md" diff --git a/gdbstub_arch/CHANGELOG.md b/gdbstub_arch/CHANGELOG.md index 18ceab2..2c5a96a 100644 --- a/gdbstub_arch/CHANGELOG.md +++ b/gdbstub_arch/CHANGELOG.md @@ -2,7 +2,7 @@ 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.3.0 (UNRELEASED) +# 0.3.0 #### Breaking Arch Changes diff --git a/gdbstub_arch/Cargo.toml b/gdbstub_arch/Cargo.toml index 56fec5c..554d918 100644 --- a/gdbstub_arch/Cargo.toml +++ b/gdbstub_arch/Cargo.toml @@ -2,7 +2,7 @@ name = "gdbstub_arch" description = "Implementations of `gdbstub::arch::Arch` for various architectures." authors = ["Daniel Prilik "] -version = "0.2.4" +version = "0.3.0" license = "MIT OR Apache-2.0" edition = "2018" readme = "README.md" @@ -13,6 +13,6 @@ keywords = ["gdb", "emulation", "no_std", "debugging"] categories = ["development-tools::debugging", "embedded", "emulators", "no-std"] [dependencies] -gdbstub = { path = "../", version = "0.6", default-features = false } +gdbstub = { path = "../", version = "0.7", default-features = false } num-traits = { version = "0.2", default-features = false }