Skip to content

Commit 9bb44b7

Browse files
committed
version bump
1 parent 5b60ad8 commit 9bb44b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

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

44
[project]
55
name = "mapfile_parser"
6-
version = "1.3.1.dev0"
6+
version = "1.3.1"
77
description = "Map file parser library focusing decompilation projects"
88
readme = "README.md"
99
requires-python = ">=3.7"

src/mapfile_parser/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from __future__ import annotations
77

88
__version_info__ = (1, 3, 1)
9-
__version__ = ".".join(map(str, __version_info__)) + ".dev0"
9+
__version__ = ".".join(map(str, __version_info__))
1010
__author__ = "Decompollaborate"
1111

1212
from . import utils as utils

0 commit comments

Comments
 (0)