diff --git a/CHANGELOG.md b/CHANGELOG.md index dfee400..1664db6 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.3.0] - 2024-1-19 + ### Added - CHANGELOG.md file. diff --git a/Cargo.lock b/Cargo.lock index dded8f9..195843d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -125,7 +125,7 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "crunch64" -version = "0.2.0" +version = "0.3.0" dependencies = [ "pyo3", "rstest", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0701dcf..e873c52 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,5 +11,5 @@ name = "crunch64" path = "src/main.rs" [dependencies] -crunch64 = { version = "0.2.0", path = "../lib" } +crunch64 = { version = "0.3.0", path = "../lib" } clap = { version = "4.4.11", features = ["derive"] } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 10a5c81..e855f3b 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.2.0" +version = "0.3.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 c9e2744..9b806e3 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, 2, 0) +__version_info__ = (0, 3, 0) __version__ = ".".join(map(str, __version_info__)) __author__ = "decompals" diff --git a/lib/pyproject.toml b/lib/pyproject.toml index 8436a2d..51c0a37 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.2.0" +version = "0.3.0" description = "A library for handling common compression formats for N64 games" requires-python = ">=3.7" dependencies = [