Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Dec 15, 2024
1 parent 2f84085 commit 02734fd
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/maturin_upload_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,26 @@ jobs:
path: dist
if-no-files-found: error

check_clippy_python_bindings:
name: Check clippy for Python bindings
runs-on: ubuntu-latest

steps:
- name: Checkout reposistory
uses: actions/checkout@v4

- name: Setup Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Setup clippy
run: rustup component add clippy

- name: Run clippy
run: cargo clippy --all-targets --features python_bindings -- -D warnings

release:
name: Release
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2] - 2024-12-15

### Added

- Prebuilt binaries for Python 3.13.
Expand Down Expand Up @@ -84,6 +86,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.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
[0.4.0]: https://github.com/decompals/crunch64/compare/0.3.1...0.4.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crunch64-cli"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
description = "A utility for compressing/decompressing files with common n64 formats"
repository = "https://github.com/decompals/crunch64"
Expand All @@ -12,5 +12,5 @@ name = "crunch64"
path = "src/main.rs"

[dependencies]
crunch64 = { version = "0.5.1", path = "../lib" }
crunch64 = { version = "0.5.2", path = "../lib" }
clap = { version = "4.4.11", features = ["derive"] }
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.5.1"
version = "0.5.2"
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, 5, 1)
__version_info__ = (0, 5, 2)
__version__ = ".".join(map(str, __version_info__))
__author__ = "decompals"

Expand Down

0 comments on commit 02734fd

Please sign in to comment.