Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for 0.5.0 #23

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0] - 2024-06-04

### Added

- Add matching zlib/DEFLATE compression for old gzip versions.
Expand Down Expand Up @@ -63,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Python bindings.
- C bindings.

[unreleased]: https://github.com/decompals/crunch64/compare/0.4.0...HEAD
[unreleased]: https://github.com/decompals/crunch64/compare/0.5.0...HEAD
[0.5.0]: https://github.com/decompals/crunch64/compare/0.4.0...0.5.0
[0.4.0]: https://github.com/decompals/crunch64/compare/0.3.1...0.4.0
[0.3.1]: https://github.com/decompals/crunch64/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/decompals/crunch64/compare/0.2.0...0.3.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crunch64-cli"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "A utility for compressing/decompressing files with common n64 formats"
repository = "https://github.com/decompals/crunch64"
Expand All @@ -11,5 +11,5 @@ name = "crunch64"
path = "src/main.rs"

[dependencies]
crunch64 = { version = "0.4.0", path = "../lib" }
crunch64 = { version = "0.5.0", path = "../lib" }
clap = { version = "4.4.11", features = ["derive"] }
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "crunch64"
# Version should be synced with lib/pyproject.toml and lib/crunch64/__init__.py
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "A library for handling common compression formats for N64 games"
repository = "https://github.com/decompals/crunch64"
Expand Down
2 changes: 1 addition & 1 deletion lib/crunch64/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import annotations

# Version should be synced with lib/Cargo.toml and lib/pyproject.toml
__version_info__ = (0, 4, 0)
__version_info__ = (0, 5, 0)
__version__ = ".".join(map(str, __version_info__))
__author__ = "decompals"

Expand Down
2 changes: 1 addition & 1 deletion lib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "crunch64"
# Version should be synced with lib/Cargo.toml and lib/crunch64/__init__.py
version = "0.4.0"
version = "0.5.0"
description = "A library for handling common compression formats for N64 games"
requires-python = ">=3.7"
dependencies = [
Expand Down
Loading