Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Jul 3, 2023
1 parent 9361406 commit 4f36653
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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.14.3.dev0"
version = "1.15.0"
description = "MIPS disassembler"
# license = "MIT"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions spimdisasm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

from __future__ import annotations

__version_info__ = (1, 14, 4)
__version__ = ".".join(map(str, __version_info__)) + ".dev0"
__version_info__ = (1, 15, 0)
__version__ = ".".join(map(str, __version_info__))
__author__ = "Decompollaborate"

from . import common as common
Expand Down

0 comments on commit 4f36653

Please sign in to comment.