Skip to content

Commit d633494

Browse files
committed
Version bump
1 parent 0ade1ed commit d633494

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.0] - 2025-10-11
11+
1012
### Added
1113

1214
- Add `no_std` compatibility to the Rust crate.
15+
- Prebuilt binaries for Python 3.14.
1316

1417
### Changed
1518

@@ -109,7 +112,8 @@ version of the library.
109112

110113
- Initial relase
111114

112-
[unreleased]: https://github.com/Decompollaborate/ipl3checksum/compare/1.2.1...HEAD
115+
[unreleased]: https://github.com/Decompollaborate/ipl3checksum/compare/1.3.0...HEAD
116+
[1.3.0]: https://github.com/Decompollaborate/ipl3checksum/compare/1.2.1...1.3.0
113117
[1.2.1]: https://github.com/Decompollaborate/ipl3checksum/compare/1.2.0...1.2.1
114118
[1.2.0]: https://github.com/Decompollaborate/ipl3checksum/compare/1.1.1...1.2.0
115119
[1.1.1]: https://github.com/Decompollaborate/ipl3checksum/compare/1.1.0...1.1.1

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[package]
55
name = "ipl3checksum"
66
# Version should be synced with src/ipl3checksum/__init__.py, pyproject.toml and src/rs/version.rs
7-
version = "1.3.0-dev0"
7+
version = "1.3.0"
88
edition = "2021"
99
description = "Library to calculate the IPL3 checksum for N64 ROMs"
1010
repository = "https://github.com/decompollaborate/ipl3checksum"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ If you use a `requirements.txt` file in your repository, then you can add
7979
this library with the following line:
8080

8181
```txt
82-
ipl3checksum>=1.2.1,<2.0.0
82+
ipl3checksum>=1.3.0,<2.0.0
8383
```
8484

8585
Now you can invoke the library from your script.
@@ -123,7 +123,7 @@ cargo add ipl3checksum
123123
Or add the following line manually to your `Cargo.toml` file:
124124

125125
```toml
126-
ipl3checksum = "1.2.1"
126+
ipl3checksum = "1.3.0"
127127
```
128128

129129
This crate is `no_std` compatible! Simply turn off the default features to use

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[project]
55
name = "ipl3checksum"
66
# Version should be synced with src/ipl3checksum/__init__.py, Cargo.toml and src/rs/version.rs
7-
version = "1.3.0-dev0"
7+
version = "1.3.0"
88
description = "Library to calculate the IPL3 checksum for N64 ROMs"
99
readme = "README.md"
1010
requires-python = ">=3.9"

src/ipl3checksum/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

1313
from .ipl3checksum import * # noqa: F403

0 commit comments

Comments
 (0)