From bc52b19c2010e50c25ec1f241879f49532157fc2 Mon Sep 17 00:00:00 2001 From: angie Date: Mon, 19 Aug 2024 10:03:32 -0400 Subject: [PATCH] version bump --- CHANGELOG.md | 3 +++ README.md | 2 +- pyproject.toml | 2 +- spimdisasm/__init__.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc2a536..6bd4734 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] +## [1.28.1] - 2024-08-19 + ### Changed - Avoid emitting "global" visibility on labels. @@ -1606,6 +1608,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Version 1.0.0 [unreleased]: https://github.com/Decompollaborate/spimdisasm/compare/master...develop +[1.28.1]: https://github.com/Decompollaborate/spimdisasm/compare/1.28.0...1.28.1 [1.28.0]: https://github.com/Decompollaborate/spimdisasm/compare/1.27.0...1.28.0 [1.27.0]: https://github.com/Decompollaborate/spimdisasm/compare/1.26.1...1.27.0 [1.26.1]: https://github.com/Decompollaborate/spimdisasm/compare/1.26.0...1.26.1 diff --git a/README.md b/README.md index 1b3d6be..095e955 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ If you use a `requirements.txt` file in your repository, then you can add this library with the following line: ```txt -spimdisasm>=1.28.0,<2.0.0 +spimdisasm>=1.28.1,<2.0.0 ``` ### Development version diff --git a/pyproject.toml b/pyproject.toml index ac31f3d..10c0d04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ [project] name = "spimdisasm" # Version should be synced with spimdisasm/__init__.py -version = "1.28.1-dev0" +version = "1.28.1" description = "MIPS disassembler" readme = "README.md" license = {file = "LICENSE"} diff --git a/spimdisasm/__init__.py b/spimdisasm/__init__.py index 3b1e063..d57e797 100644 --- a/spimdisasm/__init__.py +++ b/spimdisasm/__init__.py @@ -6,7 +6,7 @@ from __future__ import annotations __version_info__: tuple[int, int, int] = (1, 28, 1) -__version__ = ".".join(map(str, __version_info__)) + "-dev0" +__version__ = ".".join(map(str, __version_info__))# + "-dev0" __author__ = "Decompollaborate" from . import common as common