From c103d41e0dd11ba2e7e87187067366d7acbf6ce6 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Fri, 15 May 2020 11:27:01 +0200 Subject: [PATCH] Release 2.2.2 --- HISTORY.rst | 10 ++++++++++ app_helper/__init__.py | 2 +- changes/155.bugfix | 1 - changes/157.bugfix | 1 - setup.cfg | 16 ++++++++-------- 5 files changed, 19 insertions(+), 11 deletions(-) delete mode 100644 changes/155.bugfix delete mode 100644 changes/157.bugfix diff --git a/HISTORY.rst b/HISTORY.rst index 86fc00b..506580f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,16 @@ History .. towncrier release notes start +2.2.2 (2020-05-15) +======================= + +Bugfixes +-------- + +- Fix pytest args splitting (#155) +- Fix runserver autoreload with channels 2.4 (#157) + + 2.2.1 (2020-04-23) ================== diff --git a/app_helper/__init__.py b/app_helper/__init__.py index 1ab53ec..493687b 100644 --- a/app_helper/__init__.py +++ b/app_helper/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import absolute_import, print_function, unicode_literals -__version__ = "2.2.1" +__version__ = "2.2.2" __author__ = "Iacopo Spalletti " __all__ = ["runner"] diff --git a/changes/155.bugfix b/changes/155.bugfix deleted file mode 100644 index 4b09ccb..0000000 --- a/changes/155.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix pytest args splitting diff --git a/changes/157.bugfix b/changes/157.bugfix deleted file mode 100644 index 41001f5..0000000 --- a/changes/157.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix runserver autoreload with channels 2.4 diff --git a/setup.cfg b/setup.cfg index 549d5d1..b4a9de7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [bumpversion] -current_version = 2.2.1 +current_version = 2.2.2 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.?)(?P[a-z]*)(?P\d*) -serialize = +serialize = {major}.{minor}.{patch}.{release}{relver} {major}.{minor}.{patch} commit = True @@ -12,7 +12,7 @@ message = Release {new_version} [bumpversion:part:release] optional_value = gamma -values = +values = dev a b @@ -25,7 +25,7 @@ values = name = django-app-helper version = attr: app_helper.__version__ url = https://github.com/nephila/django-app-helper -project_urls = +project_urls = Documentation = https://django-app-helper.readthedocs.io/ author = Iacopo Spalletti author_email = i.spalletti@nephila.it @@ -34,7 +34,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst license = GPLv2+ license_file = LICENSE -classifiers = +classifiers = License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+) Development Status :: 5 - Production/Stable Framework :: Django @@ -52,12 +52,12 @@ classifiers = [options] include_package_data = True -install_requires = +install_requires = dj-database-url docopt mock;python_version<"3.3" six -setup_requires = +setup_requires = setuptools packages = find: python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.* @@ -69,7 +69,7 @@ zip_safe = False app_helper = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po [options.entry_points] -console_scripts = +console_scripts = django-app-helper = app_helper.main:main [options.extras_require]