Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Dec 5, 2020
1 parent 1131ff9 commit 0ae754b
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 20 deletions.
13 changes: 12 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@
History
*******

0.9.2 (unreleased)
.. towncrier release notes start
0.10.0 (2020-12-05)
===================

Features
--------

- General matching improvements (#18)
- Update tooling, drop python2 (#10213)

0.9.2 (2018-10-27)
==================

* Removed "s" from the base platform regex
Expand Down
1 change: 0 additions & 1 deletion changes/10213.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/18.feature

This file was deleted.

2 changes: 1 addition & 1 deletion giturlparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = "Iacopo Spalletti"
__email__ = "i.spalletti@nephila.it"
__version__ = "0.9.2"
__version__ = "0.10.0"


def parse(url, check_domain=True):
Expand Down
32 changes: 16 additions & 16 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.9.2
current_version = 0.10.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
tag = True
sign_tags = True
Expand All @@ -13,11 +13,11 @@ message = Release {new_version}
[bumpversion:part:release]
optional_value = gamma
values =
dev
a
b
rc
gamma
dev
a
b
rc
gamma

[bumpversion:file:giturlparse/__init__.py]

Expand All @@ -36,18 +36,18 @@ license = Apache v2
license_file = LICENSE
keywords = giturlparse
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Development Status :: 5 - Production/Stable
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7

[options]
include_package_data = True
setup_requires =
setuptools
setuptools
packages = giturlparse, giturlparse.platforms
python_requires = >=3.6
zip_safe = False
Expand Down

0 comments on commit 0ae754b

Please sign in to comment.