From 4612215ddc98dabaffedc36f6fe402bb9f04119a Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 14 Aug 2021 00:45:57 -0700 Subject: update changelog --- CHANGELOG | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 1d3103a..5cb8d07 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +## 1.1.0 + +* `pub const fn` builders for all general-purpose registers, segment registers, and ip/flags registers. + - this corrects a spotty and inconsistent set of builders filled in on-demand. +* `DisplayStyle::Intel` now shows relative offsets as `$+0xXX`, rather than `0xXX`. + - this corrects an ambiguity with instructions like `jz 0x1234`, where `jz` + on x86 is _only_ relative branches, but the displayed syntax is ambiguous + about being a relative or absolute address. + - `DisplayStyle::Intel` is how `impl Display for Instruction` works, so + typical `Display` use is also fixed. + ## 1.0.4 in 64-, 32-, and 16-bit modes: diff --git a/Cargo.toml b/Cargo.toml index 4536904..38c92b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "yaxpeax-x86" -version = "1.0.4" +version = "1.1.0" authors = [ "iximeow " ] license = "0BSD" repository = "http://git.iximeow.net/yaxpeax-x86/" -- cgit v1.1