Skip to content

Commit

Permalink
Prep for 0.3.1 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf authored Jan 21, 2024
1 parent 6887fba commit 6433c56
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 66 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1] - 2024-01-20

### Fixed

- Fix some rare cases where the Yaz0 compressor may append an extra 0 at the end of the compressed data.

## [0.3.0] - 2024-1-19
## [0.3.0] - 2024-01-19

### Added

Expand Down Expand Up @@ -46,7 +48,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.3.0...HEAD
[unreleased]: https://github.com/decompals/crunch64/compare/0.3.1...HEAD
[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
[0.2.0]: https://github.com/decompals/crunch64/compare/0.1.1...0.2.0
[0.1.1]: https://github.com/decompals/crunch64/compare/0.1.0...0.1.1
Expand Down
120 changes: 60 additions & 60 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crunch64-cli"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "A utility for compressing/decompressing files with common n64 formats"
repository = "https://github.com/decompals/crunch64"
Expand Down
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.3.0"
version = "0.3.1"
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, 3, 0)
__version_info__ = (0, 3, 1)
__version__ = ".".join(map(str, __version_info__))
__author__ = "decompals"

Expand Down
Loading

0 comments on commit 6433c56

Please sign in to comment.