Skip to content

Commit

Permalink
chore(release): 1.0.14 [skip ci]
Browse files Browse the repository at this point in the history
## [1.0.14](v1.0.13...v1.0.14) (2023-07-10)

### Bug Fixes

* **deps:** update rust crate serde to 1.0.171 ([1e073b2](1e073b2))
  • Loading branch information
semantic-release-bot committed Jul 10, 2023
1 parent 1e073b2 commit d7f6688
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.14](https://github.com/vtavernier/efiboot-rs/compare/v1.0.13...v1.0.14) (2023-07-10)


### Bug Fixes

* **deps:** update rust crate serde to 1.0.171 ([1e073b2](https://github.com/vtavernier/efiboot-rs/commit/1e073b273d58dd61c458ab35c71fec2fc0e39f52))

## [1.0.13](https://github.com/vtavernier/efiboot-rs/compare/v1.0.12...v1.0.13) (2023-07-10)


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.0.13"
version = "1.0.14"
authors = ["Vincent Tavernier <[email protected]>"]
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.0.13", path = "../efivar", features = ["store"] }
efivar = { version = "1.0.14", path = "../efivar", features = ["store"] }
itertools = "0.10.5"
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.0.13"
version = "1.0.14"
authors = ["Vincent Tavernier <[email protected]>"]
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.0.13")]
#![doc(html_root_url = "https://docs.rs/efivar/1.0.14")]

#[macro_use]
extern crate bitflags;
Expand Down

0 comments on commit d7f6688

Please sign in to comment.