From 55a078c6391e2f6cea392800f53de54f6ff59df8 Mon Sep 17 00:00:00 2001 From: angie Date: Wed, 14 Dec 2022 11:37:23 -0300 Subject: [PATCH] version bump --- pyproject.toml | 2 +- src/mapfile_parser/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 262294e..6cd6c29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "mapfile_parser" -version = "1.1.0" +version = "1.1.1" description = "Map file parser library focusing decompilation projects" readme = "README.md" requires-python = ">=3.7" diff --git a/src/mapfile_parser/__init__.py b/src/mapfile_parser/__init__.py index f91efe7..34634f5 100644 --- a/src/mapfile_parser/__init__.py +++ b/src/mapfile_parser/__init__.py @@ -5,7 +5,7 @@ from __future__ import annotations -__version_info__ = (1, 1, 0) +__version_info__ = (1, 1, 1) __version__ = ".".join(map(str, __version_info__)) __author__ = "Decompollaborate"