Skip to content

Commit

Permalink
Releasing 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Jun 11, 2021
1 parent 90ef0f4 commit 7291b8f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.0.1 (2021-06-10)
------------------

- Packaging error fixed (caused by change from module to package)


2.0.0 (2021-06-05)
------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

setup(
name="urlman",
version="2.0.0",
version="2.0.1",
description="Django URL pattern helpers",
long_description=readme_content,
url="https://github.com/andrewgodwin/urlman",
py_modules=["urlman"],
packages=["urlman"],
author="Andrew Godwin",
author_email="[email protected]",
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion urlman/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from urllib.parse import urlunparse


__version__ = "2.0.0"
__version__ = "2.0.1"


def with_metaclass(meta, *bases):
Expand Down

0 comments on commit 7291b8f

Please sign in to comment.