From 67c7a13fd0a880c3d67a8d5504a4a523cc9966d4 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 24 Jul 2023 03:39:30 +0000 Subject: [PATCH] chore(release): 1.1.2 [skip ci] ## [1.1.2](https://github.com/vtavernier/efiboot-rs/compare/v1.1.1...v1.1.2) (2023-07-24) ### Bug Fixes * **deps:** update rust crate itertools to 0.11.0 ([52bf93c](https://github.com/vtavernier/efiboot-rs/commit/52bf93c997155e6f34c3e48f880ac015606839f1)) --- CHANGELOG.md | 7 +++++++ Cargo.lock | 4 ++-- efiboot/Cargo.toml | 4 ++-- efivar/Cargo.toml | 2 +- efivar/src/lib.rs | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8a3665c..ed3a87da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.1.2](https://github.com/vtavernier/efiboot-rs/compare/v1.1.1...v1.1.2) (2023-07-24) + + +### Bug Fixes + +* **deps:** update rust crate itertools to 0.11.0 ([52bf93c](https://github.com/vtavernier/efiboot-rs/commit/52bf93c997155e6f34c3e48f880ac015606839f1)) + ## [1.1.1](https://github.com/vtavernier/efiboot-rs/compare/v1.1.0...v1.1.1) (2023-07-24) diff --git a/Cargo.lock b/Cargo.lock index 7a371af1..fe70bfc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -97,7 +97,7 @@ dependencies = [ [[package]] name = "efiboot" -version = "1.1.1" +version = "1.1.2" dependencies = [ "efivar", "itertools", @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "efivar" -version = "1.1.1" +version = "1.1.2" dependencies = [ "base64", "bitflags 2.3.3", diff --git a/efiboot/Cargo.toml b/efiboot/Cargo.toml index 974ae4f1..c262095b 100644 --- a/efiboot/Cargo.toml +++ b/efiboot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "efiboot" -version = "1.1.1" +version = "1.1.2" 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.1.1", path = "../efivar", features = ["store"] } +efivar = { version = "1.1.2", 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 6f556ef1..fec68034 100644 --- a/efivar/Cargo.toml +++ b/efivar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "efivar" -version = "1.1.1" +version = "1.1.2" authors = ["Vincent Tavernier "] license = "MIT" readme = "README.md" diff --git a/efivar/src/lib.rs b/efivar/src/lib.rs index ffaa5016..fa2c5b79 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.1.1")] +#![doc(html_root_url = "https://docs.rs/efivar/1.1.2")] #[macro_use] extern crate bitflags;