Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Sep 20, 2023
1 parent 2588242 commit 58bf93f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -3,7 +3,7 @@

[project]
name = "ipl3checksum"
version = "0.1.0.dev0"
version = "1.0.0"
description = "Library to calculate the IPL3 checksum for N64 ROMs"
readme = "README.md"
requires-python = ">=3.7"
Expand Down
4 changes: 2 additions & 2 deletions src/ipl3checksum/__init__.py
Expand Up @@ -5,8 +5,8 @@

from __future__ import annotations

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

from . import utils as utils
Expand Down

0 comments on commit 58bf93f

Please sign in to comment.