diff --git a/CHANGELOG.md b/CHANGELOG.md index c1d6db8..4a7b3e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,14 +7,22 @@ All notable changes to this project will be documented in this file. ### Added ### Changed -- console: history hints now have better highlighting (grey instead of bolt) ### Fixed -- console: now sub commands (like break remove or break info) don't clash with operation + argument -- debugger: updated `unwind` crate to 0.4.2, now it must support rcX releases of libunwind -- console: fix expression parser. Now field op, index op and slice op have the same priority and can be combined in any order -- console: now command parser considers spaces when finding subcommands ### Deprecated ### Breaking changes + +--- + +# [0.1.4] April 3 2024 + +### Changed +- console: history hints now have better highlighting (grey instead of bolt) + +### Fixed +- console: now sub commands (like break remove or break info) don't clash with operation + argument +- debugger: updated `unwind` crate to 0.4.2, now it must support rcX releases of libunwind +- console: fix expression parser. Now field op, index op and slice op have the same priority and can be combined in any order +- console: now command parser considers spaces when finding subcommands \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 2098cc3..b35dc0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -208,7 +208,7 @@ checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" [[package]] name = "bugstalker" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "ariadne", diff --git a/Cargo.toml b/Cargo.toml index 4069456..2c30da8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bugstalker" -version = "0.1.3" +version = "0.1.4" edition = "2021" license = "MIT" authors = ["Derevtsov Konstantin "]