Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Oct 7, 2023
1 parent 8f293cb commit c8f488c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.17.4] - 2023-10-07

### Added

- Add `CHANGELOG.md`
Expand Down Expand Up @@ -1250,6 +1252,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.17.4]: https://github.com/Decompollaborate/spimdisasm/compare/1.17.3...1.17.4
[1.17.3]: https://github.com/Decompollaborate/spimdisasm/compare/1.17.2...1.17.3
[1.17.2]: https://github.com/Decompollaborate/spimdisasm/compare/1.17.1...1.17.2
[1.17.1]: https://github.com/Decompollaborate/spimdisasm/compare/1.17.0...1.17.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[project]
name = "spimdisasm"
# Version should be synced with spimdisasm/__init__.py
version = "1.17.4.dev1"
version = "1.17.4"
description = "MIPS disassembler"
# license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion spimdisasm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from __future__ import annotations

__version_info__: tuple[int, int, int] = (1, 17, 4)
__version__ = ".".join(map(str, __version_info__)) + ".dev1"
__version__ = ".".join(map(str, __version_info__))
__author__ = "Decompollaborate"

from . import common as common
Expand Down

0 comments on commit c8f488c

Please sign in to comment.