Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Feb 26, 2021
1 parent ee70fa4 commit bb72f17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cure/__version_data__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Tuple, Union

__version_info__: Tuple[Union[int, str], ...] = (0, 2, 2)
__version_info__: Tuple[Union[int, str], ...] = (0, 3, 0)
__version__: str = "".join([".{}".format(str(n)) if type(n) is int else str(n) for n in __version_info__]).replace(
".", "", 1 if type(__version_info__[0]) is int else 0
)
Expand Down

0 comments on commit bb72f17

Please sign in to comment.