Skip to content

Commit

Permalink
Prep for 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ethteck committed Dec 16, 2023
1 parent d32a542 commit 8e1f0d5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Compile and release cli
uses: rust-build/[email protected]
if: "startsWith(github.ref, 'refs/tags/')"
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -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 }}
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.

6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[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]]
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"] }
4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
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, 1, 0)
__version_info__ = (0, 1, 1)
__version__ = ".".join(map(str, __version_info__))
__author__ = "decompals"

Expand Down
2 changes: 1 addition & 1 deletion lib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down

0 comments on commit 8e1f0d5

Please sign in to comment.