Skip to content

Commit 3b179f5

Browse files
author
Abolfazl Amiri
committed
v0.1.4
1 parent de5f284 commit 3b179f5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = simplesm
3-
version = 0.1.3
3+
version = 0.1.4
44
description = Simple state machine for Python 3
55
long_description = file: README.md
66
long_description_content_type = text/markdown

simplesm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
VERSION = VersionInfo(0, 1, 3)
7+
VERSION = VersionInfo(0, 1, 4)
88

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

0 commit comments

Comments
 (0)