diff --git a/docs/conf.py b/docs/conf.py index d989a5f..98e5277 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,7 +49,7 @@ # The short X.Y version. version = "2.0" # The full version, including alpha/beta/rc tags. -release = "2.0-dev" +release = "2.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 9065795..82461c7 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -2,7 +2,7 @@ Release notes =============== -Version 2.0 (unreleased) +Version 2.0 (2022-03-25) ------------------------ * Better fix for Django 4.0 form rendering, enabling custom subclasses to work. diff --git a/paypal/__init__.py b/paypal/__init__.py index 49fee08..f2dc0e4 100644 --- a/paypal/__init__.py +++ b/paypal/__init__.py @@ -1 +1 @@ -__version__ = "2.0-dev" +__version__ = "2.0" diff --git a/release.sh b/release.sh index 68f8984..2bd1216 100755 --- a/release.sh +++ b/release.sh @@ -9,4 +9,4 @@ find . -type d | xargs chmod ugo+rx VERSION=$(./setup.py --version) || exit 1 -twine upload dist/django-paypal-$VERSION.tar.gz dist/django_paypal-$VERSION-py2.py3-none-any.whl || exit 1 +twine upload dist/django-paypal-$VERSION.tar.gz dist/django_paypal-$VERSION-py3-none-any.whl || exit 1 diff --git a/setup.py b/setup.py index c9c0c7a..92bad21 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def read(*rnames): setup( name="django-paypal", - version="2.0-dev", + version="2.0", author="John Boxall", author_email="john@handimobility.ca", maintainer="Luke Plant",