Skip to content

Commit

Permalink
chore(applesauce-cli): release v0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Emann committed Dec 17, 2024
1 parent e0ee05a commit b9751b2
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions crates/applesauce-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.5](https://github.com/Dr-Emann/applesauce/compare/applesauce-cli-v0.5.4...applesauce-cli-v0.5.5) - 2024-12-17

### Other

- Bump the minor-patches group across 1 directory with 3 updates ([#78](https://github.com/Dr-Emann/applesauce/pull/78))
- fix clippy warnings

## [0.5.4](https://github.com/Dr-Emann/applesauce/compare/applesauce-cli-v0.5.3...applesauce-cli-v0.5.4) - 2024-07-03

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/applesauce-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "applesauce-cli"
version = "0.5.4"
version = "0.5.5"
edition = "2021"
license = "GPL-3.0-or-later"
description = "A command-line interface for compressing and decompressing files using macos transparent compression"
Expand All @@ -20,7 +20,7 @@ lzfse = ["applesauce/lzfse"]
lzvn = ["applesauce/lzvn"]

[dependencies]
applesauce = { version = "^0.5.4", path = "../applesauce", default-features = false }
applesauce = { version = "^0.5.5", path = "../applesauce", default-features = false }

cfg-if = "1.0.0"
clap = { version = "4.5", features = ["derive"] }
Expand Down
6 changes: 6 additions & 0 deletions crates/applesauce-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.3](https://github.com/Dr-Emann/applesauce/compare/applesauce-core-v0.3.2...applesauce-core-v0.3.3) - 2024-12-17

### Other

- fix clippy warnings

## [0.3.2](https://github.com/Dr-Emann/applesauce/compare/applesauce-core-v0.3.1...applesauce-core-v0.3.2) - 2024-07-03

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/applesauce-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "applesauce-core"
version = "0.3.2"
version = "0.3.3"
edition = "2021"
license = "GPL-3.0-or-later"
description = "A low level library interface for compressing and decompressing files using macos transparent compression"
Expand Down
6 changes: 6 additions & 0 deletions crates/applesauce/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.5](https://github.com/Dr-Emann/applesauce/compare/applesauce-v0.5.4...applesauce-v0.5.5) - 2024-12-17

### Other

- fix clippy warnings

## [0.5.4](https://github.com/Dr-Emann/applesauce/compare/applesauce-v0.5.3...applesauce-v0.5.4) - 2024-07-03

### Other
Expand Down
6 changes: 3 additions & 3 deletions crates/applesauce/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4"
version = "0.5.5"
edition = "2021"
keywords = ["compression", "afsc", "decmpfs"]
categories = ["compression"]
Expand All @@ -24,8 +24,8 @@ system-lzfse = ["lzfse", "applesauce-core/system-lzfse"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
resource-fork = { version = "^0.3.0", path = "../resource-fork" }
applesauce-core = { version = "^0.3.2", path = "../applesauce-core" }
resource-fork = { version = "^0.3.1", path = "../resource-fork" }
applesauce-core = { version = "^0.3.3", path = "../applesauce-core" }

crossbeam-channel = "0.5.13"
libc = "0.2.155"
Expand Down
14 changes: 14 additions & 0 deletions crates/resource-fork/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.1](https://github.com/Dr-Emann/applesauce/compare/resource-fork-v0.3.0...resource-fork-v0.3.1) - 2024-12-17

### Other

- fix clippy warnings
2 changes: 1 addition & 1 deletion crates/resource-fork/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "resource-fork"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A library for reading and writing Macos resource forks"
Expand Down

0 comments on commit b9751b2

Please sign in to comment.