From 346ccc15e9cb0da29f1a7d69f330a97736daced3 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 9 Aug 2023 22:23:24 +0000 Subject: [PATCH] chore(release): 1.2.0 [skip ci] # [1.2.0](https://github.com/iTrooz/efiboot-rs/compare/v1.1.3...v1.2.0) (2023-08-09) ### Features * add `efiboot delete` and efivar implementation ([cf034bf](https://github.com/iTrooz/efiboot-rs/commit/cf034bfd7488a25c7bd251ad3f33b053b21d46b4)) --- 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 758de2b1..e2cb2c98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.2.0](https://github.com/iTrooz/efiboot-rs/compare/v1.1.3...v1.2.0) (2023-08-09) + + +### Features + +* add `efiboot delete` and efivar implementation ([cf034bf](https://github.com/iTrooz/efiboot-rs/commit/cf034bfd7488a25c7bd251ad3f33b053b21d46b4)) + ## [1.1.3](https://github.com/vtavernier/efiboot-rs/compare/v1.1.2...v1.1.3) (2023-07-31) diff --git a/Cargo.lock b/Cargo.lock index d227859e..e00777ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -97,7 +97,7 @@ dependencies = [ [[package]] name = "efiboot" -version = "1.1.3" +version = "1.2.0" dependencies = [ "efivar", "itertools", @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "efivar" -version = "1.1.3" +version = "1.2.0" dependencies = [ "base64", "bitflags 2.3.3", diff --git a/efiboot/Cargo.toml b/efiboot/Cargo.toml index e91b2fd3..8b517a22 100644 --- a/efiboot/Cargo.toml +++ b/efiboot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "efiboot" -version = "1.1.3" +version = "1.2.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.1.3", path = "../efivar", features = ["store"] } +efivar = { version = "1.2.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 f6a376aa..ae97bac7 100644 --- a/efivar/Cargo.toml +++ b/efivar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "efivar" -version = "1.1.3" +version = "1.2.0" authors = ["Vincent Tavernier "] license = "MIT" readme = "README.md" diff --git a/efivar/src/lib.rs b/efivar/src/lib.rs index 12594d53..baf038a6 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.3")] +#![doc(html_root_url = "https://docs.rs/efivar/1.2.0")] #[macro_use] extern crate bitflags;