Skip to content

Commit

Permalink
Release 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Jul 29, 2022
1 parent 2d486f8 commit 6457a6d
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 50 deletions.
4 changes: 3 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Credits
Development Lead
----------------

* Iacopo Spalletti <i.spalletti@nephila.it>
* Iacopo Spalletti <i.spalletti@nephila.digital>

Contributors
------------
Expand All @@ -15,3 +15,5 @@ Contributors
* Daniele Procida
* Eraldo Energy
* Felipe Prenholato
* Jacob Rief
* Kirill Kniazev
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
==================

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Documentation is available on `readthedocs`_.
Authors
*******

``django-app-helper`` was written by `Iacopo Spalletti <i.spalletti@nephila.it>`_ with help from
``django-app-helper`` was written by `Iacopo Spalletti <i.spalletti@nephila.digital>`_ with help from
other contributors.

Thanks
Expand Down
4 changes: 2 additions & 2 deletions app_helper/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = "3.0.1"
__author__ = "Iacopo Spalletti <i.spalletti@nephila.it>"
__version__ = "3.1.0"
__author__ = "Iacopo Spalletti <i.spalletti@nephila.digital>"
__all__ = ["runner"]

HELPER_FILE = "helper.py"
1 change: 0 additions & 1 deletion changes/204.feature

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ knowledge, and a willingness to follow the contribution guidelines.
Nephila
*******

Django App Helper was created by Iacopo Spalletti at `Nephila <https://nephila.it/>`_
Django App Helper was created by Iacopo Spalletti at `Nephila <https://nephila.digital/>`_
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
Expand Down
84 changes: 42 additions & 42 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 3.0.1
current_version = 3.1.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}
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
tag = True
sign_tags = True
Expand All @@ -12,73 +12,73 @@ 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]

[metadata]
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/
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils/AUTHORS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

* Iacopo Spalletti <i.spalletti@nephila.it>
* Iacopo Spalletti <i.spalletti@nephila.digital>

0 comments on commit 6457a6d

Please sign in to comment.