Skip to content

Commit

Permalink
v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Abolfazl Amiri committed Sep 7, 2022
1 parent de5f284 commit 3b179f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = simplesm
version = 0.1.3
version = 0.1.4
description = Simple state machine for Python 3
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion simplesm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

VersionInfo = namedtuple("VersionInfo", ("major", "minor", "patch"))

VERSION = VersionInfo(0, 1, 3)
VERSION = VersionInfo(0, 1, 4)

__version__ = "{0.major}.{0.minor}.{0.patch}".format(VERSION)
__all__ = [SimpleSM]

0 comments on commit 3b179f5

Please sign in to comment.