diff options
-rw-r--r-- | x86test/Cargo.toml | 8 | ||||
-rw-r--r-- | x86test/README.md | 9 |
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 |