Skip to content

Commit

Permalink
Bump version to 0.2.2
Browse files Browse the repository at this point in the history
This change bumps the program's version to 0.2.2. The following notable
changes have been made since 0.2.1:
- Removed once_cell dependency
  • Loading branch information
d-e-s-o committed Dec 28, 2024
1 parent e6e3d81 commit 4086d96
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.2.2
-----
- Removed `once_cell` dependency


0.2.1
-----
- Fixed wrong handling of root (`/`) subvolume in various sub-commands
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "btrfs-backup"
version = "0.2.1"
version = "0.2.2"
authors = ["Daniel Mueller <deso@posteo.net>"]
edition = "2021"
license = "GPL-3.0-or-later"
Expand Down
2 changes: 0 additions & 2 deletions src/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ const ENCODED_COMPONENT_SEPARATOR: &str = "_";

/// The UTC time zone offset we use throughout the program.
static UTC_OFFSET: LazyLock<UtcOffset> = LazyLock::new(|| {
// SANITY: Offset retrieval should always succeed given our
// "soundness" setting above.
UtcOffset::current_local_offset().expect("failed to inquire current local time offset")
});

Expand Down

0 comments on commit 4086d96

Please sign in to comment.