Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Nov 29, 2019
1 parent 92cc248 commit edf58ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "trailing"
version = "0.0.1"
version = "0.0.2"
description = "Decorator for adding trailing underscores to keys of keyword arguments using keys of reserved keywords or built-ins"
authors = ["Carl Oscar Aaro <[email protected]>"]
homepage = "https://github.com/kalaspuff/trailing"
Expand Down
2 changes: 1 addition & 1 deletion trailing/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (0, 0, 1)
__version_info__ = (0, 0, 2)
__version__ = "".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 edf58ab

Please sign in to comment.