Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Sep 21, 2023
1 parent 71f5e73 commit 7105252
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.1] - 2023-09-21

### Added

- Allow invoking `ipl3checksum` as a CLI program.
Expand All @@ -19,11 +21,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- List features.
- Add a `py.typed` file.

## [1.0.0] - 2023-09-21
## [1.0.0] - 2023-09-20

### Added

- Initial relase

[unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/1.0.0...HEAD
[unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/1.1.0...HEAD
[1.0.1]: https://github.com/olivierlacan/keep-a-changelog/compare/1.0.0...1.1.1
[1.0.0]: https://github.com/Decompollaborate/ipl3checksum/releases/tag/1.0.0
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[project]
name = "ipl3checksum"
version = "1.0.1.dev0"
version = "1.0.1"
description = "Library to calculate the IPL3 checksum for N64 ROMs"
readme = "README.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion src/ipl3checksum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from __future__ import annotations

__version_info__: tuple[int, int, int] = (1, 0, 1)
__version__ = ".".join(map(str, __version_info__)) + ".dev0"
__version__ = ".".join(map(str, __version_info__))
__author__ = "Decompollaborate"

from . import utils as utils
Expand Down

0 comments on commit 7105252

Please sign in to comment.