Skip to content

Commit

Permalink
Bump version: 0.2.9 → 0.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
hukkinj1 committed Jun 6, 2021
1 parent 0d199df commit 7c9c5ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
commit = True
tag = True
tag_name = {new_version}
current_version = 0.2.9
current_version = 0.2.10

[bumpversion:file:pyproject.toml]
search = version = "{current_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "tomli"
version = "0.2.9" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
version = "0.2.10" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
authors = ["Taneli Hukkinen <[email protected]>"]
description = "A lil' TOML parser"
repository = "https://github.com/hukkinj1/tomli"
Expand Down
2 changes: 1 addition & 1 deletion tomli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__all__ = ("loads", "load", "TOMLDecodeError")
__version__ = "0.2.9" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
__version__ = "0.2.10" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT

from tomli._parser import TOMLDecodeError, load, loads

0 comments on commit 7c9c5ee

Please sign in to comment.