aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2020-12-06 16:40:06 -0800
committeriximeow <me@iximeow.net>2020-12-06 16:40:06 -0800
commitf2c6e3c008ebdca831d78cbec7972974a6e6fd2a (patch)
tree01b475bd17f3da613d7c010e956ad9462fb18249
parentf92ec9a4bf680ff008f431edb5d776eca8d2198a (diff)
bump to 0.0.6 and fix markdown0.0.6
-rw-r--r--CHANGELOG3
-rw-r--r--Cargo.toml2
-rw-r--r--README.md14
3 files changed, 11 insertions, 8 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 1a32078..346dce7 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+## 0.0.6
+* fix incorrect markdown in README.md
+
## 0.0.5
* add thumb/thumb2 decoders
diff --git a/Cargo.toml b/Cargo.toml
index c3dd94c..ecb2e33 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "yaxpeax-arm"
-version = "0.0.5"
+version = "0.0.6"
authors = [ "iximeow <me@iximeow.net>" ]
license = "0BSD"
repository = "http://git.iximeow.net/yaxpeax-arm/"
diff --git a/README.md b/README.md
index 9185389..852c0be 100644
--- a/README.md
+++ b/README.md
@@ -13,17 +13,17 @@ for all ARMv7 instructions, `armv7::Instruction::s()` reports if the instruction
0.1 and 1.0 versions are considered significant indicators of feature-completeness and stability. the specific guidelines by which `yaxpeax-arm` will be considered stable are listed below.
### 0.1 checklist
-[ ] support `NEON`
-[ ] adjust `yaxpeax-arch` so `min_length` can be contingent on the mode of `InstDecoder`
+- [ ] support `NEON`
+- [ ] adjust `yaxpeax-arch` so `min_length` can be contingent on the mode of `InstDecoder`
- currently `min_length` is always 4, which is incorrect for `Thumb` modes.
conversely, selecting "2" would be flagrantly wrong for `ARM` modes.
-[ ] address all in-tree TODO
+- [ ] address all in-tree TODO
### 1.0 checklist
-[ ] support per-version decode flags, so decoding an armv4, armv5, or armv7 instruction
-[ ] fully support `should_is_must` to control how pedantic decoding should be
-[ ] fully support reporting `unpredictable` encodings as `DecodeError::Unpredictable` if required
-[ ] exhaustively test armv7 and armv8 instructions against other decoders
+- [ ] support per-version decode flags, so decoding an armv4, armv5, or armv7 instruction
+- [ ] fully support `should_is_must` to control how pedantic decoding should be
+- [ ] fully support reporting `unpredictable` encodings as `DecodeError::Unpredictable` if required
+- [ ] exhaustively test armv7 and armv8 instructions against other decoders
- existing thumb test suite is derived from enumerating thumb instructions,
but is missing some