diff --git a/CHANGELOG.md b/CHANGELOG.md index 85ab2f6..ee2ac4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,10 +10,14 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] -## [0.2.25] - 2024-06-07 +## [0.2.26] - 2024-06-07 - improve follow [this](https://users.rust-lang.org/t/i-just-wrote-the-hardest-code-in-my-life-any-improvements/112596) +## [0.2.25] - 2024-06-07 + +- yanked + ## [0.2.24] - 2024-06-06 - fix: batch pull SIGINT hint missed diff --git a/Cargo.lock b/Cargo.lock index 6c145d8..93cb4dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -367,7 +367,7 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "fav" -version = "0.2.25" +version = "0.2.26" dependencies = [ "fav_cli", "tokio", @@ -377,7 +377,7 @@ dependencies = [ [[package]] name = "fav_cli" -version = "0.2.25" +version = "0.2.26" dependencies = [ "chrono", "clap", @@ -425,7 +425,7 @@ dependencies = [ [[package]] name = "fav_utils" -version = "0.0.9" +version = "0.0.10" dependencies = [ "fav_core", "futures", diff --git a/Cargo.toml b/Cargo.toml index b9725f7..6630985 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [workspace.package] -version = "0.2.25" +version = "0.2.26" authors = ["Louis <836250617@qq.com>"] description = "Back up your favorite online resources with CLI." license = "MIT" @@ -16,8 +16,8 @@ documentation = "" [workspace.dependencies] fav_core = { path = "fav_core", version = "0.1.0" } fav_derive = { path = "fav_derive", version = "0.0.1" } -fav_utils = { path = "fav_utils", version = "0.0.9" } -fav_cli = { path = "fav_cli", version = "0.2.25" } +fav_utils = { path = "fav_utils", version = "0.0.10" } +fav_cli = { path = "fav_cli", version = "0.2.26" } [profile.release] lto = "fat" diff --git a/fav_utils/Cargo.toml b/fav_utils/Cargo.toml index e184647..1dc6527 100644 --- a/fav_utils/Cargo.toml +++ b/fav_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fav_utils" -version = "0.0.9" +version = "0.0.10" authors.workspace = true description = "Fav's utils crate; A collection of utilities and data structures for the fav project" license.workspace = true