Skip to content

Commit 54ee08c

Browse files
authored
Merge pull request #11 from Decompollaborate/develop
2.1.3
2 parents f6cd42b + 8c1b06c commit 54ee08c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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 = "2.1.2.dev1"
6+
version = "2.1.3"
77
description = "Map file parser library focusing decompilation projects"
88
readme = "README.md"
99
requires-python = ">=3.7"

src/mapfile_parser/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
from __future__ import annotations
77

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

1212
from . import utils as utils

0 commit comments

Comments
 (0)