Bump version: 0.1.1 → 0.1.2
diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4aecf17..058dbaa 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg
@@ -2,7 +2,7 @@ commit = True tag = True tag_name = {new_version} -current_version = 0.1.1 +current_version = 0.1.2 [bumpversion:file:pyproject.toml] search = version = "{current_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
diff --git a/pyproject.toml b/pyproject.toml index 67efc9c..916a588 100644 --- a/pyproject.toml +++ b/pyproject.toml
@@ -4,7 +4,7 @@ [project] name = "mdurl" -version = "0.1.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT +version = "0.1.2" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT description = "Markdown URL utilities" authors = [ { name = "Taneli Hukkinen", email = "hukkin@users.noreply.github.com" },
diff --git a/src/mdurl/__init__.py b/src/mdurl/__init__.py index 2cd5739..cdbb640 100644 --- a/src/mdurl/__init__.py +++ b/src/mdurl/__init__.py
@@ -9,7 +9,7 @@ "parse", "URL", ) -__version__ = "0.1.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT +__version__ = "0.1.2" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT from mdurl._decode import DECODE_COMPONENT_CHARS, DECODE_DEFAULT_CHARS, decode from mdurl._encode import ENCODE_COMPONENT_CHARS, ENCODE_DEFAULT_CHARS, encode