From 629fff2466b0d15487b663a8bd1f164ce8aee045 Mon Sep 17 00:00:00 2001 From: Angie Date: Fri, 22 Dec 2023 10:01:33 -0300 Subject: [PATCH] version bump --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- pyproject.toml | 4 ++-- src/ipl3checksum/__init__.py | 4 ++-- src/rs/version.rs | 1 + 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d46b27..267c081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0] - 2023-12-22 + ### Added - Add Rust support. @@ -51,5 +53,6 @@ version of the library. - Initial relase [unreleased]: https://github.com/Decompollaborate/ipl3checksum/compare/main...develop +[1.1.0]: https://github.com/Decompollaborate/ipl3checksum/compare/1.0.1...1.1.0 [1.0.1]: https://github.com/Decompollaborate/ipl3checksum/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/Decompollaborate/ipl3checksum/releases/tag/1.0.0 diff --git a/Cargo.toml b/Cargo.toml index 51a4f34..40443be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "ipl3checksum" -# Version should be synced with src/ipl3checksum/__init__.py and pyproject.toml +# Version should be synced with src/ipl3checksum/__init__.py, pyproject.toml and src/rs/version.rs version = "1.1.0" edition = "2021" description = "Library to calculate the IPL3 checksum for N64 ROMs" diff --git a/pyproject.toml b/pyproject.toml index 904aa5f..130ee05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,8 +3,8 @@ [project] name = "ipl3checksum" -# Version should be synced with src/ipl3checksum/__init__.py and Cargo.toml -version = "1.1.0.dev0" +# Version should be synced with src/ipl3checksum/__init__.py, Cargo.toml and src/rs/version.rs +version = "1.1.0" 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 deb245f..0a7b8d5 100644 --- a/src/ipl3checksum/__init__.py +++ b/src/ipl3checksum/__init__.py @@ -5,9 +5,9 @@ from __future__ import annotations -# Version should be synced with pyproject.toml and Cargo.toml +# Version should be synced with pyproject.toml, Cargo.toml and src/rs/version.rs __version_info__: tuple[int, int, int] = (1, 1, 0) -__version__ = ".".join(map(str, __version_info__)) + ".dev0" +__version__ = ".".join(map(str, __version_info__)) __author__ = "Decompollaborate" from .ipl3checksum import * diff --git a/src/rs/version.rs b/src/rs/version.rs index e41ba53..01625be 100644 --- a/src/rs/version.rs +++ b/src/rs/version.rs @@ -1,6 +1,7 @@ /* SPDX-FileCopyrightText: © 2023 Decompollaborate */ /* SPDX-License-Identifier: MIT */ +// 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 = 1; pub static VERSION_PATCH: i32 = 0;