Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Aug 1, 2023
1 parent 1aa11bc commit ea306c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 = "mapfile_parser"
version = "1.3.0.dev0"
version = "1.3.0"
description = "Map file parser library focusing decompilation projects"
readme = "README.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion src/mapfile_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from __future__ import annotations

__version_info__ = (1, 3, 0)
__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 ea306c1

Please sign in to comment.