From 42513706ddaeb2e65eeb7614afcc6156ee3b9a1f Mon Sep 17 00:00:00 2001 From: angie Date: Sun, 15 Dec 2024 09:41:23 -0300 Subject: [PATCH] version bump --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- pyproject.toml | 2 +- src/ipl3checksum/__init__.py | 2 +- src/rs/version.rs | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8a369fc..b97ba76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "autocfg" @@ -34,7 +34,7 @@ checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8" [[package]] name = "ipl3checksum" -version = "1.2.0" +version = "1.2.1" dependencies = [ "md5", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index d434698..7fc1bf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "ipl3checksum" # Version should be synced with src/ipl3checksum/__init__.py, pyproject.toml and src/rs/version.rs -version = "1.2.0" +version = "1.2.1" edition = "2021" description = "Library to calculate the IPL3 checksum for N64 ROMs" repository = "https://github.com/decompollaborate/ipl3checksum" diff --git a/pyproject.toml b/pyproject.toml index 6248e47..1690bd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ [project] name = "ipl3checksum" # Version should be synced with src/ipl3checksum/__init__.py, Cargo.toml and src/rs/version.rs -version = "1.2.0" +version = "1.2.1" description = "Library to calculate the IPL3 checksum for N64 ROMs" readme = "README.md" requires-python = ">=3.7" diff --git a/src/ipl3checksum/__init__.py b/src/ipl3checksum/__init__.py index 372d033..6dd40bb 100644 --- a/src/ipl3checksum/__init__.py +++ b/src/ipl3checksum/__init__.py @@ -6,7 +6,7 @@ from __future__ import annotations # Version should be synced with pyproject.toml, Cargo.toml and src/rs/version.rs -__version_info__: tuple[int, int, int] = (1, 2, 0) +__version_info__: tuple[int, int, int] = (1, 2, 1) __version__ = ".".join(map(str, __version_info__)) __author__ = "Decompollaborate" diff --git a/src/rs/version.rs b/src/rs/version.rs index eccf704..411e5ab 100644 --- a/src/rs/version.rs +++ b/src/rs/version.rs @@ -4,12 +4,12 @@ // Version should be synced with pyproject.toml, Cargo.toml and src/ipl3checksum/__init__.py pub static VERSION_MAJOR: i32 = 1; pub static VERSION_MINOR: i32 = 2; -pub static VERSION_PATCH: i32 = 0; +pub static VERSION_PATCH: i32 = 1; pub static VERSION_INFO: (i32, i32, i32) = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH); // TODO: figure out a way to construct this string by using VERSION_MAJOR, VERSION_MINOR and VERSION_PATCH (concat! and stringify! didn't work) -pub static VERSION_STR: &str = "1.2.0"; +pub static VERSION_STR: &str = "1.2.1"; pub static AUTHOR: &str = "Decompollaborate"; @@ -24,7 +24,7 @@ mod c_bindings { // TODO: construct this from super::VERSION_STR #[no_mangle] - static ipl3checksum_version_str: &[u8] = b"1.2.0\0"; + static ipl3checksum_version_str: &[u8] = b"1.2.1\0"; // TODO: construct this from super::AUTHOR #[no_mangle]