Skip to content

Commit fe95f1f

Browse files
committed
Bump version: 0.0.1 → 0.1.0
1 parent c61ab1f commit fe95f1f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
commit = True
33
tag = True
44
tag_name = {new_version}
5-
current_version = 0.0.1
5+
current_version = 0.1.0
66

77
[bumpversion:file:pyproject.toml]
88
search = version = "{current_version}" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "mdurl"
7-
version = "0.0.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
7+
version = "0.1.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
88
description = "Markdown URL utilities"
99
authors = [
1010
{ name = "Taneli Hukkinen", email = "[email protected]" },

src/mdurl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"parse",
1010
"URL",
1111
)
12-
__version__ = "0.0.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
12+
__version__ = "0.1.0" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT
1313

1414
from mdurl._decode import DECODE_COMPONENT_CHARS, DECODE_DEFAULT_CHARS, decode
1515
from mdurl._encode import ENCODE_COMPONENT_CHARS, ENCODE_DEFAULT_CHARS, encode

0 commit comments

Comments
 (0)