diff --git a/CHANGELOG.md b/CHANGELOG.md index a4dc826..74d34f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,10 +10,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] -### [0.2.20] - 2024-06-05 - - -## [0.2.19] - 2024-06-05 +## [0.2.20] - 2024-06-05 - better documente for `fav_core` - fix bugs in batch ops @@ -26,6 +23,10 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com - refactor all commands - fix: cache not clear if failed or cancelled +## [0.2.19] - 2024-06-05 + +- yanked + ## [0.2.18] - 2024-06-04 - optimize: lto set to `fat` to reduce binary size. diff --git a/Cargo.lock b/Cargo.lock index 43c8b1f..e63f400 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -367,7 +367,7 @@ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" [[package]] name = "fav" -version = "0.2.19" +version = "0.2.20" dependencies = [ "fav_cli", "tokio", @@ -377,7 +377,7 @@ dependencies = [ [[package]] name = "fav_cli" -version = "0.2.19" +version = "0.2.20" dependencies = [ "chrono", "clap", @@ -392,7 +392,7 @@ dependencies = [ [[package]] name = "fav_core" -version = "0.0.13" +version = "0.0.12" dependencies = [ "bitflags 2.5.0", "fav_derive", @@ -424,7 +424,7 @@ dependencies = [ [[package]] name = "fav_utils" -version = "0.0.8" +version = "0.0.7" dependencies = [ "fav_core", "futures", diff --git a/Cargo.toml b/Cargo.toml index 7ccb1d9..3e1e4e3 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.19" +version = "0.2.20" authors = ["Louis <836250617@qq.com>"] description = "Back up your favorite online resources with CLI." license = "MIT" @@ -14,10 +14,10 @@ repository = "https://github.com/kingwingfly/fav" documentation = "" [workspace.dependencies] -fav_core = { path = "fav_core", version = "0.0.13" } +fav_core = { path = "fav_core", version = "0.0.12" } fav_derive = { path = "fav_derive", version = "0.0.1" } -fav_utils = { path = "fav_utils", version = "0.0.8" } -fav_cli = { path = "fav_cli", version = "0.2.19" } +fav_utils = { path = "fav_utils", version = "0.0.7" } +fav_cli = { path = "fav_cli", version = "0.2.20" } [profile.release] lto = "fat" diff --git a/fav_core/Cargo.toml b/fav_core/Cargo.toml index 65251b4..a3446d4 100644 --- a/fav_core/Cargo.toml +++ b/fav_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fav_core" -version = "0.0.13" +version = "0.0.12" authors.workspace = true description = "Fav's core crate; A collection of traits." license.workspace = true diff --git a/fav_utils/Cargo.toml b/fav_utils/Cargo.toml index 35374c9..c040b24 100644 --- a/fav_utils/Cargo.toml +++ b/fav_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fav_utils" -version = "0.0.8" +version = "0.0.7" authors.workspace = true description = "Fav's utils crate; A collection of utilities and data structures for the fav project" license.workspace = true