From 482b9bae26900f6281a1fb5631a3dd1791598d7f Mon Sep 17 00:00:00 2001 From: Anghelo Carvajal Date: Thu, 25 Jul 2024 19:14:10 -0400 Subject: [PATCH] Prep for 0.5.1 (#25) --- CHANGELOG.md | 5 ++++- Cargo.lock | 4 ++-- cli/Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- lib/crunch64/__init__.py | 2 +- lib/pyproject.toml | 2 +- 6 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edc22fc..3e203d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1] - 2024-07-25 + ### Fixed - Fix a bug where the gzip compressor may output incorrect data when emitting @@ -70,7 +72,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.5.0...HEAD +[unreleased]: https://github.com/decompals/crunch64/compare/0.5.1...HEAD +[0.5.1]: https://github.com/decompals/crunch64/compare/0.5.0...0.5.1 [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 diff --git a/Cargo.lock b/Cargo.lock index 97f3ad7..5c99315 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,7 +134,7 @@ dependencies = [ [[package]] name = "crunch64" -version = "0.5.0" +version = "0.5.1" dependencies = [ "crc32fast", "pyo3", @@ -144,7 +144,7 @@ dependencies = [ [[package]] name = "crunch64-cli" -version = "0.5.0" +version = "0.5.1" dependencies = [ "clap", "crunch64", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6c4cd1e..a954dc2 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crunch64-cli" -version = "0.5.0" +version = "0.5.1" edition = "2021" description = "A utility for compressing/decompressing files with common n64 formats" repository = "https://github.com/decompals/crunch64" @@ -11,5 +11,5 @@ name = "crunch64" path = "src/main.rs" [dependencies] -crunch64 = { version = "0.5.0", path = "../lib" } +crunch64 = { version = "0.5.1", path = "../lib" } clap = { version = "4.4.11", features = ["derive"] } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 159cd11..320c5bd 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crunch64" # Version should be synced with lib/pyproject.toml and lib/crunch64/__init__.py -version = "0.5.0" +version = "0.5.1" edition = "2021" description = "A library for handling common compression formats for N64 games" repository = "https://github.com/decompals/crunch64" diff --git a/lib/crunch64/__init__.py b/lib/crunch64/__init__.py index 2b5a44a..0d61bf3 100644 --- a/lib/crunch64/__init__.py +++ b/lib/crunch64/__init__.py @@ -3,7 +3,7 @@ from __future__ import annotations # Version should be synced with lib/Cargo.toml and lib/pyproject.toml -__version_info__ = (0, 5, 0) +__version_info__ = (0, 5, 1) __version__ = ".".join(map(str, __version_info__)) __author__ = "decompals" diff --git a/lib/pyproject.toml b/lib/pyproject.toml index 632d25d..43a60cd 100644 --- a/lib/pyproject.toml +++ b/lib/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "crunch64" # Version should be synced with lib/Cargo.toml and lib/crunch64/__init__.py -version = "0.5.0" +version = "0.5.1" description = "A library for handling common compression formats for N64 games" requires-python = ">=3.7" dependencies = [