aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Gerd Zellweger <mail@gerdzellweger.com> 2020-04-24 14:48:42 -0700
committerGravatar Gerd Zellweger <mail@gerdzellweger.com> 2020-04-24 14:49:04 -0700
commitcc7784171d07e1359a3e38ef772543ff0da97067 (patch)
treedb34bbcf4bd3e95878446bf77fb17eea3697e621
parentd8eda82c76de59c717aa81fbaa5ccca7323151e1 (diff)
downloadrust-x86-cc7784171d07e1359a3e38ef772543ff0da97067.tar.gz
rust-x86-cc7784171d07e1359a3e38ef772543ff0da97067.tar.zst
rust-x86-cc7784171d07e1359a3e38ef772543ff0da97067.zip
Update x86test.
-rw-r--r--x86test/Cargo.toml8
-rw-r--r--x86test/README.md9
2 files changed, 13 insertions, 4 deletions
diff --git a/x86test/Cargo.toml b/x86test/Cargo.toml
index a5ec7b9..a530ac5 100644
--- a/x86test/Cargo.toml
+++ b/x86test/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "x86test"
-version = "0.0.2"
+version = "0.0.3"
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
repository = "https://github.com/gz/rust-x86"
@@ -16,10 +16,10 @@ Custom test runner for bare-metal x86 tests.
"""
[dependencies]
-x86test-macro = { path = "x86test_macro", version = "0.0.2" }
-x86test-types = { path = "x86test_types", version = "0.0.2" }
+x86test-macro = { path = "x86test_macro", version = "0.0.3" }
+x86test-types = { path = "x86test_types", version = "0.0.3" }
kvm-sys = "0.3.0"
-x86 = "0.19"
+x86 = "0.32"
mmap = "0.1.1"
log = "0.4"
klogger = { version = "0.0.4", features = ["use_ioports"] }
diff --git a/x86test/README.md b/x86test/README.md
index cb97e08..e543cee 100644
--- a/x86test/README.md
+++ b/x86test/README.md
@@ -81,3 +81,12 @@ The x86test attribute currently supports the following parameters:
* [x86test_macro](x86test_macro): contains a procedural macro implementation of `x86test`.
* [x86test_types](x86test_types): contains implementations of kassert, kpanic and the X86TestFn struct.
* [src](src): contains the custom test runner implementation.
+
+## Updating
+
+Should be done in the following order:
+
+* Release new version of `x86test-types`
+* Release new version of `x86test-macro` (adjust version dependency of x86test-types)
+* Release new version of `x86test` (adjust version dependency of x86test-types and x86test-macro)
+* Tag with `git tag x86test-0.0.x` \ No newline at end of file