diff --git a/CHANGELOG.md b/CHANGELOG.md index d61f356..417a1c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.7.1] - 2024-09-25 + ### Added - Add `--json` flag to `progress` frontend. @@ -424,6 +426,7 @@ Full changes: "] diff --git a/README.md b/README.md index c423955..1953668 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ If you use a `requirements.txt` file in your repository, then you can add this library with the following line: ```txt -mapfile_parser>=2.7.0,<3.0.0 +mapfile_parser>=2.7.1,<3.0.0 ``` #### Development version @@ -74,7 +74,7 @@ cargo add mapfile_parser Or add the following line manually to your `Cargo.toml` file: ```toml -mapfile_parser = "2.7.0" +mapfile_parser = "2.7.1" ``` ## Versioning and changelog diff --git a/pyproject.toml b/pyproject.toml index 43a8803..560a700 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "mapfile_parser" -version = "2.7.1-dev0" +version = "2.7.1" description = "Map file parser library focusing decompilation projects" readme = "README.md" requires-python = ">=3.8" diff --git a/src/mapfile_parser/__init__.py b/src/mapfile_parser/__init__.py index 1e6cfdd..22c9713 100644 --- a/src/mapfile_parser/__init__.py +++ b/src/mapfile_parser/__init__.py @@ -6,7 +6,7 @@ from __future__ import annotations __version_info__ = (2, 7, 1) -__version__ = ".".join(map(str, __version_info__)) + "-dev0" +__version__ = ".".join(map(str, __version_info__))# + "-dev0" __author__ = "Decompollaborate" from . import utils as utils