diff --git a/Cargo.lock b/Cargo.lock index 86e88d6..a5dcb29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,7 +73,7 @@ dependencies = [ [[package]] name = "applesauce" -version = "0.5.3" +version = "0.5.4" dependencies = [ "applesauce-core", "crossbeam-channel", @@ -92,7 +92,7 @@ dependencies = [ [[package]] name = "applesauce-cli" -version = "0.5.3" +version = "0.5.4" dependencies = [ "applesauce", "cfg-if", @@ -108,7 +108,7 @@ dependencies = [ [[package]] name = "applesauce-core" -version = "0.3.1" +version = "0.3.2" dependencies = [ "criterion", "flate2", diff --git a/crates/applesauce-cli/CHANGELOG.md b/crates/applesauce-cli/CHANGELOG.md index f37b98e..787c84c 100644 --- a/crates/applesauce-cli/CHANGELOG.md +++ b/crates/applesauce-cli/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.4](https://github.com/Dr-Emann/applesauce/compare/applesauce-cli-v0.5.3...applesauce-cli-v0.5.4) - 2024-07-03 + +### Other +- Extra post-op stats ([#73](https://github.com/Dr-Emann/applesauce/pull/73)) +- Bump the minor-patches group across 1 directory with 3 updates +- Bump the minor-patches group across 1 directory with 3 updates +- Add test to verify things work with hard links present. + ## [0.5.3](https://github.com/Dr-Emann/applesauce/compare/applesauce-cli-v0.5.2...applesauce-cli-v0.5.3) - 2024-04-16 ### Other diff --git a/crates/applesauce-cli/Cargo.toml b/crates/applesauce-cli/Cargo.toml index 6e62fc7..b7ebc8c 100644 --- a/crates/applesauce-cli/Cargo.toml +++ b/crates/applesauce-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "applesauce-cli" -version = "0.5.3" +version = "0.5.4" edition = "2021" license = "GPL-3.0-or-later" description = "A command-line interface for compressing and decompressing files using macos transparent compression" @@ -20,7 +20,7 @@ lzfse = ["applesauce/lzfse"] lzvn = ["applesauce/lzvn"] [dependencies] -applesauce = { version = "^0.5.3", path = "../applesauce", default-features = false } +applesauce = { version = "^0.5.4", path = "../applesauce", default-features = false } cfg-if = "1.0.0" clap = { version = "4.5", features = ["derive"] } diff --git a/crates/applesauce-core/CHANGELOG.md b/crates/applesauce-core/CHANGELOG.md index 1a30cda..2d88899 100644 --- a/crates/applesauce-core/CHANGELOG.md +++ b/crates/applesauce-core/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.2](https://github.com/Dr-Emann/applesauce/compare/applesauce-core-v0.3.1...applesauce-core-v0.3.2) - 2024-07-03 + +### Other +- Bump the minor-patches group across 1 directory with 3 updates + ## [0.3.1](https://github.com/Dr-Emann/applesauce/compare/applesauce-core-v0.3.0...applesauce-core-v0.3.1) - 2024-04-15 ### Other diff --git a/crates/applesauce-core/Cargo.toml b/crates/applesauce-core/Cargo.toml index 336da78..9b4fbcc 100644 --- a/crates/applesauce-core/Cargo.toml +++ b/crates/applesauce-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "applesauce-core" -version = "0.3.1" +version = "0.3.2" edition = "2021" license = "GPL-3.0-or-later" description = "A low level library interface for compressing and decompressing files using macos transparent compression" diff --git a/crates/applesauce/CHANGELOG.md b/crates/applesauce/CHANGELOG.md index 820318f..6fac448 100644 --- a/crates/applesauce/CHANGELOG.md +++ b/crates/applesauce/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.4](https://github.com/Dr-Emann/applesauce/compare/applesauce-v0.5.3...applesauce-v0.5.4) - 2024-07-03 + +### Other +- Bump the minor-patches group across 1 directory with 3 updates +- Bump the minor-patches group across 1 directory with 3 updates +- Add test to verify things work with hard links present. + ## [0.5.3](https://github.com/Dr-Emann/applesauce/compare/applesauce-v0.5.2...applesauce-v0.5.3) - 2024-04-16 ### Other diff --git a/crates/applesauce/Cargo.toml b/crates/applesauce/Cargo.toml index dce05e4..94e0390 100644 --- a/crates/applesauce/Cargo.toml +++ b/crates/applesauce/Cargo.toml @@ -2,7 +2,7 @@ name = "applesauce" description = "A tool for compressing files with apple file system compression" license = "GPL-3.0-or-later" -version = "0.5.3" +version = "0.5.4" edition = "2021" keywords = ["compression", "afsc", "decmpfs"] categories = ["compression"] @@ -25,7 +25,7 @@ system-lzfse = ["lzfse", "applesauce-core/system-lzfse"] [dependencies] resource-fork = { version = "^0.3.0", path = "../resource-fork" } -applesauce-core = { version = "^0.3.1", path = "../applesauce-core" } +applesauce-core = { version = "^0.3.2", path = "../applesauce-core" } crossbeam-channel = "0.5.13" libc = "0.2.155"