From 847c4fb29f83fa2bbaafe645011afced4fe757c0 Mon Sep 17 00:00:00 2001 From: angie Date: Wed, 25 Sep 2024 13:44:30 -0300 Subject: [PATCH] Version bump --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- pyproject.toml | 2 +- src/mapfile_parser/__init__.py | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) 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