From ed3d417165e05f12c766d2b2af1eca9e7f1d71f7 Mon Sep 17 00:00:00 2001 From: Ethan Date: Tue, 17 Dec 2024 01:02:53 +0900 Subject: [PATCH] 0.5.3 version bump --- CHANGELOG.md | 7 +++++++ Cargo.lock | 4 ++-- cli/Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- lib/crunch64/__init__.py | 2 +- lib/pyproject.toml | 2 +- 6 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21d38b2..c42e9a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.3] - 2024-12-15 + +### Fixed + +- Correct version number for Python project. + ## [0.5.2] - 2024-12-15 ### Added @@ -86,6 +92,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - C bindings. [unreleased]: https://github.com/decompals/crunch64/compare/0.5.1...HEAD +[0.5.3]: https://github.com/decompals/crunch64/compare/0.5.2...0.5.3 [0.5.2]: https://github.com/decompals/crunch64/compare/0.5.1...0.5.2 [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 diff --git a/Cargo.lock b/Cargo.lock index e955e5a..c6fe05a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -134,7 +134,7 @@ dependencies = [ [[package]] name = "crunch64" -version = "0.5.2" +version = "0.5.3" dependencies = [ "crc32fast", "pyo3", @@ -144,7 +144,7 @@ dependencies = [ [[package]] name = "crunch64-cli" -version = "0.5.2" +version = "0.5.3" dependencies = [ "clap", "crunch64", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 38f5621..8f9930e 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crunch64-cli" -version = "0.5.2" +version = "0.5.3" edition = "2021" description = "A utility for compressing/decompressing files with common n64 formats" repository = "https://github.com/decompals/crunch64" @@ -12,5 +12,5 @@ name = "crunch64" path = "src/main.rs" [dependencies] -crunch64 = { version = "0.5.2", path = "../lib" } +crunch64 = { version = "0.5.3", path = "../lib" } clap = { version = "4.4.11", features = ["derive"] } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index dae5a29..c8c7c6f 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.2" +version = "0.5.3" 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 62221dd..1a6a2cf 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, 2) +__version_info__ = (0, 5, 3) __version__ = ".".join(map(str, __version_info__)) __author__ = "decompals" diff --git a/lib/pyproject.toml b/lib/pyproject.toml index 58c15eb..1199d62 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.1" +version = "0.5.3" description = "A library for handling common compression formats for N64 games" requires-python = ">=3.9" dependencies = [