Prepare for 0.1.1 release
Update dependencies and version number to 0.1.1.
Fix bit ranges in rustdoc comment mistakenly interpreted as intra-doc
links.
Signed-off-by: Imre Kis <imre.kis@arm.com>
Change-Id: If479fab81bc32e520f37179c9ca541c636a67c64
diff --git a/Cargo.lock b/Cargo.lock
index 2f03365..20d418c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4,7 +4,7 @@
[[package]]
name = "arm-psci"
-version = "0.1.0"
+version = "0.1.1"
dependencies = [
"bitflags",
"num_enum",
@@ -48,18 +48,18 @@
[[package]]
name = "quote"
-version = "1.0.39"
+version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c1f1914ce909e1658d9907913b4b91947430c7d9be598b15a1912935b8c04801"
+checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
dependencies = [
"proc-macro2",
]
[[package]]
name = "syn"
-version = "2.0.99"
+version = "2.0.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e02e925281e18ffd9d640e234264753c43edc62d64b2d4cf898f1bc5e75f3fc2"
+checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
dependencies = [
"proc-macro2",
"quote",
diff --git a/Cargo.toml b/Cargo.toml
index 8a277dc..c2ee1a4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,7 +3,7 @@
[package]
name = "arm-psci"
-version = "0.1.0"
+version = "0.1.1"
authors = [
"Balint Dobszay <balint.dobszay@arm.com>",
"Imre Kis <imre.kis@arm.com>",
diff --git a/src/lib.rs b/src/lib.rs
index a2e735a..087872b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -312,7 +312,7 @@
}
/// The `MPIDR_EL1` register contains bits other then the aff3-0 fields. However the PSCI
- /// specification request bits[40:63] and bits[24:31] to be set to zero when forwarding an
+ /// specification request bits\[40:63\] and bits\[24:31\] to be set to zero when forwarding an
/// MPIDR value as an argument of a PSCI function call. Because of this, the `TryFrom`
/// implementation returns an error if these bits are set. In other cases the `Mpidr` value is
/// constructed from the `MPIDR_EL1` register value of the local core. This function does this