From 54263889098562429dfa89620f4b56947e607a99 Mon Sep 17 00:00:00 2001 From: angie Date: Mon, 26 Aug 2024 15:18:17 -0400 Subject: [PATCH] version bump --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- pyproject.toml | 2 +- src/mapfile_parser/__init__.py | 4 ++-- 6 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7334ccd..0c7c205 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.6.0] - 2024-08-26 + ### Added - Add new parameters to `bss_check.printSymbolComparison`. @@ -390,6 +392,7 @@ Full changes: "] diff --git a/README.md b/README.md index e40e1c5..e3be7bc 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.5.1,<3.0.0 +mapfile_parser>=2.6.0,<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.5.1" +mapfile_parser = "2.6.0" ``` ## Versioning and changelog diff --git a/pyproject.toml b/pyproject.toml index 4f9ad0f..08e3bfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "mapfile_parser" -version = "2.5.2-dev0" +version = "2.6.0" 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 194bb58..7568836 100644 --- a/src/mapfile_parser/__init__.py +++ b/src/mapfile_parser/__init__.py @@ -5,8 +5,8 @@ from __future__ import annotations -__version_info__ = (2, 5, 2) -__version__ = ".".join(map(str, __version_info__)) + "-dev0" +__version_info__ = (2, 6, 0) +__version__ = ".".join(map(str, __version_info__))# + "-dev0" __author__ = "Decompollaborate" from . import utils as utils