diff --git a/CHANGELOG.md b/CHANGELOG.md index e2cb2c98..da2f59e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [1.3.0](https://github.com/iTrooz/efiboot-rs/compare/v1.2.0...v1.3.0) (2023-08-10) + + +### Features + +* add boot subcommands to read boot entries ([#57](https://github.com/iTrooz/efiboot-rs/issues/57)) ([1c083ae](https://github.com/iTrooz/efiboot-rs/commit/1c083aee85f9fa83222172b726d83f60043ab89c)) +* **efiboot:** make opinionated change to `efiboot read` to make it easier to use ([#59](https://github.com/iTrooz/efiboot-rs/issues/59)) ([2d71676](https://github.com/iTrooz/efiboot-rs/commit/2d716769b0f4cc756113f03c77b9de9612c049d6)) + # [1.2.0](https://github.com/iTrooz/efiboot-rs/compare/v1.1.3...v1.2.0) (2023-08-09) diff --git a/Cargo.lock b/Cargo.lock index e00777ab..9c1382bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -97,7 +97,7 @@ dependencies = [ [[package]] name = "efiboot" -version = "1.2.0" +version = "1.3.0" dependencies = [ "efivar", "itertools", @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "efivar" -version = "1.2.0" +version = "1.3.0" dependencies = [ "base64", "bitflags 2.3.3", diff --git a/efiboot/Cargo.toml b/efiboot/Cargo.toml index 8b517a22..25ecd4e0 100644 --- a/efiboot/Cargo.toml +++ b/efiboot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "efiboot" -version = "1.2.0" +version = "1.3.0" authors = ["Vincent Tavernier "] license = "MIT" readme = "README.md" @@ -13,7 +13,7 @@ description = "EFI boot manager variable editor written in Rust" edition = "2018" [dependencies] -efivar = { version = "1.2.0", path = "../efivar", features = ["store"] } +efivar = { version = "1.3.0", path = "../efivar", features = ["store"] } itertools = "0.11.0" paw = "1.0.0" structopt = { version = "0.3.26", features = ["paw"] } diff --git a/efivar/Cargo.toml b/efivar/Cargo.toml index ae97bac7..9c9b2f3e 100644 --- a/efivar/Cargo.toml +++ b/efivar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "efivar" -version = "1.2.0" +version = "1.3.0" authors = ["Vincent Tavernier "] license = "MIT" readme = "README.md" diff --git a/efivar/src/lib.rs b/efivar/src/lib.rs index 776270a0..76258cbe 100644 --- a/efivar/src/lib.rs +++ b/efivar/src/lib.rs @@ -12,7 +12,7 @@ //! In-memory and filesystem storage are also provided for testing purposes, or as a way to dump //! system variables to an external file. -#![doc(html_root_url = "https://docs.rs/efivar/1.2.0")] +#![doc(html_root_url = "https://docs.rs/efivar/1.3.0")] #[macro_use] extern crate bitflags;