diff --git a/AUTHORS.rst b/AUTHORS.rst index f9ad5db..c82da81 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -5,7 +5,7 @@ Credits Development Lead ---------------- -* Iacopo Spalletti +* Iacopo Spalletti Contributors ------------ @@ -15,3 +15,5 @@ Contributors * Daniele Procida * Eraldo Energy * Felipe Prenholato +* Jacob Rief +* Kirill Kniazev diff --git a/HISTORY.rst b/HISTORY.rst index d4acfbd..399ce2b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,16 @@ History .. towncrier release notes start +3.1.0 (2022-07-29) +================== + +Features +-------- + +- Upgrade Python / Django versions (#204) +- Add minimal django 4.0 support (#208) + + 3.0.1 (2020-12-09) ================== diff --git a/README.rst b/README.rst index c6ca849..32da446 100644 --- a/README.rst +++ b/README.rst @@ -122,7 +122,7 @@ Documentation is available on `readthedocs`_. Authors ******* -``django-app-helper`` was written by `Iacopo Spalletti `_ with help from +``django-app-helper`` was written by `Iacopo Spalletti `_ with help from other contributors. Thanks diff --git a/app_helper/__init__.py b/app_helper/__init__.py index ace7771..806d063 100644 --- a/app_helper/__init__.py +++ b/app_helper/__init__.py @@ -1,5 +1,5 @@ -__version__ = "3.0.1" -__author__ = "Iacopo Spalletti " +__version__ = "3.1.0" +__author__ = "Iacopo Spalletti " __all__ = ["runner"] HELPER_FILE = "helper.py" diff --git a/changes/204.feature b/changes/204.feature deleted file mode 100644 index 78717cf..0000000 --- a/changes/204.feature +++ /dev/null @@ -1 +0,0 @@ -Upgrade Python / Django versions diff --git a/changes/208.feature b/changes/208.feature deleted file mode 100644 index 0f3c68b..0000000 --- a/changes/208.feature +++ /dev/null @@ -1 +0,0 @@ -Add minimal django 4.0 support diff --git a/docs/development.rst b/docs/development.rst index f40cec4..6d0fc69 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -11,7 +11,7 @@ knowledge, and a willingness to follow the contribution guidelines. Nephila ******* -Django App Helper was created by Iacopo Spalletti at `Nephila `_ +Django App Helper was created by Iacopo Spalletti at `Nephila `_ and is released under a GNU GENERAL PUBLIC LICENSE. Nephila is an active supporter of django CMS and its community. Django App Helper is intended to diff --git a/setup.cfg b/setup.cfg index d0671fe..30cc65a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.1.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.?)(?P[a-z]*)(?P\d*) -serialize = - {major}.{minor}.{patch}.{release}{relver} - {major}.{minor}.{patch} +serialize = + {major}.{minor}.{patch}.{release}{relver} + {major}.{minor}.{patch} commit = True tag = True sign_tags = True @@ -12,12 +12,12 @@ message = Release {new_version} [bumpversion:part:release] optional_value = gamma -values = - dev - a - b - rc - gamma +values = + dev + a + b + rc + gamma [bumpversion:file:app_helper/__init__.py] @@ -25,60 +25,60 @@ values = name = django-app-helper version = attr: app_helper.__version__ url = https://github.com/nephila/django-app-helper -project_urls = - Documentation = https://django-app-helper.readthedocs.io/ +project_urls = + Documentation = https://django-app-helper.readthedocs.io/ author = Iacopo Spalletti -author_email = i.spalletti@nephila.it +author_email = i.spalletti@nephila.digital description = Helper for django applications development long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst license = GPLv2+ license_file = LICENSE -classifiers = - License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+) - Development Status :: 5 - Production/Stable - Framework :: Django - Framework :: Django :: 2.2 - Framework :: Django :: 3.2 - Programming Language :: Python - Programming Language :: Python :: 3 - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 - Programming Language :: Python :: 3.9 - Programming Language :: Python :: 3.10 +classifiers = + License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+) + Development Status :: 5 - Production/Stable + Framework :: Django + Framework :: Django :: 2.2 + Framework :: Django :: 3.2 + Programming Language :: Python + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 [options] include_package_data = True -install_requires = - dj-database-url - docopt - six -setup_requires = - setuptools +install_requires = + dj-database-url + docopt + six +setup_requires = + setuptools packages = find: python_requires = >=3.7 test_suite = app_helper.tests zip_safe = False -keywords = - django - tests - development - pytest - django-cms +keywords = + django + tests + development + pytest + django-cms [options.package_data] * = *.txt, *.rst app_helper = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po [options.entry_points] -console_scripts = - django-app-helper = app_helper.main:main +console_scripts = + django-app-helper = app_helper.main:main [options.extras_require] cms = django-cms>=3.7,<3.12 -async = - channels - daphne +async = + channels + daphne [upload] repository = https://upload.pypi.org/legacy/ diff --git a/tests/test_utils/AUTHORS b/tests/test_utils/AUTHORS index c259b82..862149c 100644 --- a/tests/test_utils/AUTHORS +++ b/tests/test_utils/AUTHORS @@ -1,2 +1,2 @@ -* Iacopo Spalletti +* Iacopo Spalletti