Browse Source

Bump versions to 0.3.0

Isaac Woods 5 years ago
parent
commit
6394a65d84
3 changed files with 3 additions and 3 deletions
  1. 1 1
      README.md
  2. 1 1
      acpi/Cargo.toml
  3. 1 1
      aml_parser/Cargo.toml

+ 1 - 1
README.md

@@ -7,7 +7,7 @@
 
 A library to parse ACPI tables and AML, written in pure Rust. Designed to be easy to use from Rust bootloaders and kernels. The library is split into two crates:
 - `acpi` parses the static tables (useful but not feature-complete)
-- `aml_parser` parses the AML tables (still a work-in-progress, not that useful yet)
+- `aml_parser` parses the AML tables (can parse some namespaces, cannot yet execute methods)
 
 ## Contributing
 Contributions are more than welcome! You can:

+ 1 - 1
acpi/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "acpi"
-version = "0.2.1"
+version = "0.3.0"
 authors = ["Isaac Woods"]
 repository = "https://github.com/rust-osdev/acpi"
 description = "Library for parsing ACPI tables"

+ 1 - 1
aml_parser/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "aml_parser"
-version = "0.2.0"
+version = "0.3.0"
 authors = ["Isaac Woods"]
 repository = "https://github.com/rust-osdev/acpi"
 description = "Library for parsing AML"