Skip to content

Commit 629fff2

Browse files
committed
version bump
1 parent 1171b33 commit 629fff2

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.1.0] - 2023-12-22
11+
1012
### Added
1113

1214
- Add Rust support.
@@ -51,5 +53,6 @@ version of the library.
5153
- Initial relase
5254

5355
[unreleased]: https://github.com/Decompollaborate/ipl3checksum/compare/main...develop
56+
[1.1.0]: https://github.com/Decompollaborate/ipl3checksum/compare/1.0.1...1.1.0
5457
[1.0.1]: https://github.com/Decompollaborate/ipl3checksum/compare/1.0.0...1.0.1
5558
[1.0.0]: https://github.com/Decompollaborate/ipl3checksum/releases/tag/1.0.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[package]
55
name = "ipl3checksum"
6-
# Version should be synced with src/ipl3checksum/__init__.py and pyproject.toml
6+
# Version should be synced with src/ipl3checksum/__init__.py, pyproject.toml and src/rs/version.rs
77
version = "1.1.0"
88
edition = "2021"
99
description = "Library to calculate the IPL3 checksum for N64 ROMs"

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
[project]
55
name = "ipl3checksum"
6-
# Version should be synced with src/ipl3checksum/__init__.py and Cargo.toml
7-
version = "1.1.0.dev0"
6+
# Version should be synced with src/ipl3checksum/__init__.py, Cargo.toml and src/rs/version.rs
7+
version = "1.1.0"
88
description = "Library to calculate the IPL3 checksum for N64 ROMs"
99
readme = "README.md"
1010
requires-python = ">=3.7"

src/ipl3checksum/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
from __future__ import annotations
77

8-
# Version should be synced with pyproject.toml and Cargo.toml
8+
# Version should be synced with pyproject.toml, Cargo.toml and src/rs/version.rs
99
__version_info__: tuple[int, int, int] = (1, 1, 0)
10-
__version__ = ".".join(map(str, __version_info__)) + ".dev0"
10+
__version__ = ".".join(map(str, __version_info__))
1111
__author__ = "Decompollaborate"
1212

1313
from .ipl3checksum import *

src/rs/version.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* SPDX-FileCopyrightText: © 2023 Decompollaborate */
22
/* SPDX-License-Identifier: MIT */
33

4+
// Version should be synced with pyproject.toml, Cargo.toml and src/ipl3checksum/__init__.py
45
pub static VERSION_MAJOR: i32 = 1;
56
pub static VERSION_MINOR: i32 = 1;
67
pub static VERSION_PATCH: i32 = 0;

0 commit comments

Comments
 (0)