From 8d5fb1194163b08ca92a9b3bef96acad927be096 Mon Sep 17 00:00:00 2001 From: Angie Date: Tue, 4 Jun 2024 20:34:02 -0400 Subject: [PATCH] Prep for 0.5.0 --- 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 716a2c5..8019efa 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.0] - 2024-06-04 + ### Added - Add matching zlib/DEFLATE compression for old gzip versions. @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 816c9e6..97f3ad7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,7 +134,7 @@ dependencies = [ [[package]] name = "crunch64" -version = "0.4.0" +version = "0.5.0" dependencies = [ "crc32fast", "pyo3", @@ -144,7 +144,7 @@ dependencies = [ [[package]] name = "crunch64-cli" -version = "0.4.0" +version = "0.5.0" dependencies = [ "clap", "crunch64", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e27ab54..6c4cd1e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" @@ -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"] } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 09bbe96..159cd11 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.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" diff --git a/lib/crunch64/__init__.py b/lib/crunch64/__init__.py index fb1432c..2b5a44a 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, 4, 0) +__version_info__ = (0, 5, 0) __version__ = ".".join(map(str, __version_info__)) __author__ = "decompals" diff --git a/lib/pyproject.toml b/lib/pyproject.toml index 3e1d93f..632d25d 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.4.0" +version = "0.5.0" description = "A library for handling common compression formats for N64 games" requires-python = ">=3.7" dependencies = [