Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Apr 23, 2020
1 parent 54abe40 commit 66d5b6a
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 14 deletions.
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
2.2.0 (2020-04-23)
==================

Features
--------

- Add Django 3.0 / django CMS 3.7.2 support (#142)
- Replace makefile with invoke (#143)


2.1.1 (2020-02-04)
==================

Expand Down
2 changes: 1 addition & 1 deletion app_helper/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals

__version__ = "2.2.0.dev1"
__version__ = "2.2.0"
__author__ = "Iacopo Spalletti <i.spalletti@nephila.it>"
__all__ = ["runner"]

Expand Down
1 change: 0 additions & 1 deletion changes/142.feature

This file was deleted.

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

This file was deleted.

21 changes: 10 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
current_version = 2.2.0.dev1
current_version = 2.2.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
Expand All @@ -12,7 +12,7 @@ message = Release {new_version}

[bumpversion:part:release]
optional_value = gamma
values =
values =
dev
a
b
Expand All @@ -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
Expand All @@ -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
Expand All @@ -52,12 +52,12 @@ classifiers =

[options]
include_package_data = True
install_requires =
install_requires =
dj-database-url
docopt
mock;python_version<"3.3"
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.*
Expand All @@ -69,8 +69,8 @@ zip_safe = False
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]
pyflakes = pyflakes<2.1;django-cms>=3.4,<3.8
Expand All @@ -84,4 +84,3 @@ formats = zip
[bdist_wheel]
universal = 1

0 comments on commit 66d5b6a

Please sign in to comment.