Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #408

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion constance/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from django.utils.functional import LazyObject
from . import checks

__version__ = '2.6.0'
__version__ = '2.7.0'

default_app_config = 'constance.apps.ConstanceConfig'

Expand Down
37 changes: 37 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,48 @@
Changelog
---------

v2.7.0 (2020/06/16)
~~~~~~~~~~~~~~~~~~~

* Delete south migrations

* Improve grammar of documentation index file

* Simplify documentation installation section

* Fix IntegrityError after 2.5.0 release
(Allow concurrent calls to `DatabaseBackend.set()` method)

* Make groups of fieldsets collapsable

* Allow override_config for pytest

* Put back wheel generation in travis

* Fix wrong "is modified" in admin for multi line strings

* Switch md5 to sha256

* Fix Attempts to change config values fail silently and
appear to succeed when user does not have change permissions

* Make constance app verbose name translatable

* Update example project for Django>2

* Add anchors in admin for constance settings

* Added a sticky footer in django constance admin

* Add memory backend

v2.6.0 (2020/01/29)
~~~~~~~~~~~~~~~~~~~

* Drop support py<3.5 django<2.2

* Set pickle protocol version for the Redis backend

* Add a command to delete stale records

v2.5.0 (2019/12/23)
Expand Down