aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2020-02-22 16:57:45 -0800
committeriximeow <me@iximeow.net>2020-02-22 17:00:23 -0800
commit3fecb0305fada50a9f1f4850500b498f452ee2ee (patch)
tree11738c1fd0672e6ac9670765561c8a8270f88102
parent8f363fcdb3fd8cd588b787874ea94b6fb83dff39 (diff)
bump to 0.0.70.0.7
-rw-r--r--CHANGELOG25
-rw-r--r--Cargo.toml2
2 files changed, 26 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..ed98cfd
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,25 @@
+## 0.0.7
+
+`sse` and `sse2` support are mostly complete.
+`jmp reg` erroneously decoded to 32-bit registers without `rex.w`.
+`callf` could erroneously decode as having a register operand.
+more comprehensive, if yet insufficiently tested, avx decoding.
+support `vmclear` and `vmxon`, vmx still incomplete.
+
+## 0.0.6
+
+addressing modes using a sib byte with displacement != 0 were wrongly reported as having no displacement.
+
+## 0.0.5
+
+history basically starts here.
+
+* impl Ord and PartialOrd on RegSpec and RegisterBank
+* `RegSpec::name` to get `&'static str` labels for registers
+* support `in` and `out` instructions
+
+## 0.0.4 - 0.0.2
+
+seriously stop, just don't use these versions
+
+just bumps to use newer `yaxpeax-arch` since this is all wildly unstable
diff --git a/Cargo.toml b/Cargo.toml
index 778ab0a..77bb3b3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "yaxpeax-x86"
-version = "0.0.6"
+version = "0.0.7"
authors = [ "iximeow <me@iximeow.net>" ]
license = "0BSD"
repository = "http://git.iximeow.net/yaxpeax-x86/"