From 8e1f0d55799ee989bbced7c966159ae76cdf4a89 Mon Sep 17 00:00:00 2001 From: Ethan Date: Sat, 16 Dec 2023 22:50:48 +0900 Subject: [PATCH] Prep for 0.1.1 --- .github/workflows/release.yml | 5 +++-- Cargo.lock | 4 ++-- cli/Cargo.toml | 6 +++--- lib/Cargo.toml | 4 ++-- lib/crunch64/__init__.py | 2 +- lib/pyproject.toml | 2 +- 6 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63c0b89..331e06b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: - name: Compile and release cli uses: rust-build/rust-build.action@v1.4.4 - if: "startsWith(github.ref, 'refs/tags/')" + if: startsWith(github.ref, 'refs/tags/') env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -67,6 +67,7 @@ jobs: - name: Publish crate uses: katyo/publish-crates@v2 - if: "startsWith(github.ref, 'refs/tags/')" + if: startsWith(github.ref, 'refs/tags/') with: + path: "lib/" registry-token: ${{ secrets.CRATE_AUTH_TOKEN }} diff --git a/Cargo.lock b/Cargo.lock index aeaaf46..68e2808 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -125,7 +125,7 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "crunch64" -version = "0.1.0" +version = "0.1.1" dependencies = [ "pyo3", "rstest", @@ -134,7 +134,7 @@ dependencies = [ [[package]] name = "crunch64-cli" -version = "0.1.0" +version = "0.1.1" dependencies = [ "clap", "crunch64", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 78a964a..c8037ba 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "crunch64-cli" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "A utility for compressing/decompressing files with common n64 formats" -repository = "https://github.com/ethteck/crunch64" +repository = "https://github.com/decompals/crunch64" license = "MIT" [[bin]] @@ -11,5 +11,5 @@ name = "crunch64" path = "src/main.rs" [dependencies] -crunch64 = { version = "0.1.0", path = "../lib" } +crunch64 = { version = "0.1.1", path = "../lib" } clap = { version = "4.4.11", features = ["derive"] } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 67718e7..ccad779 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "crunch64" # Version should be synced with lib/pyproject.toml and lib/crunch64/__init__.py -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "A library for handling common compression formats for N64 games" -repository = "https://github.com/ethteck/crunch64" +repository = "https://github.com/decompals/crunch64" license = "MIT" [lib] diff --git a/lib/crunch64/__init__.py b/lib/crunch64/__init__.py index 7921d45..0d4ec6c 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, 1, 0) +__version_info__ = (0, 1, 1) __version__ = ".".join(map(str, __version_info__)) __author__ = "decompals" diff --git a/lib/pyproject.toml b/lib/pyproject.toml index 050cccd..ad1a6ea 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.1.0" +version = "0.1.1" description = "A library for handling common compression formats for N64 games" requires-python = ">=3.7" dependencies = [