Bump version: 0.1.0 → 0.1.1
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index fb80f6b..4aecf17 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -2,7 +2,7 @@
 commit = True
 tag = True
 tag_name = {new_version}
-current_version = 0.1.0
+current_version = 0.1.1
 
 [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 0afd9d9..67efc9c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@
 
 [project]
 name = "mdurl"
-version = "0.1.0"  # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
+version = "0.1.1"  # 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 ca0f65c..2cd5739 100644
--- a/src/mdurl/__init__.py
+++ b/src/mdurl/__init__.py
@@ -9,7 +9,7 @@
     "parse",
     "URL",
 )
-__version__ = "0.1.0"  # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
+__version__ = "0.1.1"  # 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