Skip to content

Commit d48b79b

Browse files
committed
Release 0.11.0
1 parent d09cb10 commit d48b79b

9 files changed

Lines changed: 23 additions & 10 deletions

File tree

.bumpversion.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
2-
current_version = 0.10.0
2+
current_version = 0.11.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
4-
serialize =
4+
serialize =
55
{major}.{minor}.{patch}.{release}{relver}
66
{major}.{minor}.{patch}
77
commit = True
@@ -12,7 +12,7 @@ message = Release {new_version}
1212

1313
[bumpversion:part:release]
1414
optional_value = gamma
15-
values =
15+
values =
1616
dev
1717
a
1818
b

HISTORY.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,25 @@ History
66

77
.. towncrier release notes start
88
9+
0.11.0 (2023-08-03)
10+
===================
11+
12+
Features
13+
--------
14+
15+
- Add parsing variable for user to gitlab parser (#47)
16+
- Add support for Python 3.8+ (#48)
17+
18+
19+
Bugfixes
20+
--------
21+
22+
- Update tests invocation method to avoid future breakages (#29)
23+
- Update linting tools and fix code style (#34)
24+
- Add more github use cases (#43)
25+
- Fix parsing generic git url (#46)
26+
27+
928
0.10.0 (2020-12-05)
1029
===================
1130

changes/29.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/34.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/43.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/46.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/47.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

changes/48.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

giturlparse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
__author__ = "Iacopo Spalletti"
55
__email__ = "[email protected]"
6-
__version__ = "0.10.0"
6+
__version__ = "0.11.0"
77

88

99
def parse(url, check_domain=True):

0 commit comments

Comments
 (0)