Skip to content

Commit

Permalink
chore(release): 1.3.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.3.0](v1.2.0...v1.3.0) (2023-08-10)

### Features

* add boot subcommands to read boot entries ([#57](#57)) ([1c083ae](1c083ae))
* **efiboot:** make opinionated change to `efiboot read` to make it easier to use ([#59](#59)) ([2d71676](2d71676))
  • Loading branch information
semantic-release-bot committed Aug 10, 2023
1 parent 2d71676 commit 74566c1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions efiboot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "efiboot"
version = "1.2.0"
version = "1.3.0"
authors = ["Vincent Tavernier <v.tavernier@pm.me>"]
license = "MIT"
readme = "README.md"
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion efivar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "efivar"
version = "1.2.0"
version = "1.3.0"
authors = ["Vincent Tavernier <v.tavernier@pm.me>"]
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion efivar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 74566c1

Please sign in to comment.