Skip to content

Commit

Permalink
Prepare release 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Janneke Janssen committed Aug 25, 2020
1 parent 7b62123 commit 21bc1f6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.rst
@@ -1,7 +1,7 @@
Changelog
=========

2.2 (XX-XX-XXXX)
2.2 (25-05-2020)
----------------

- Added official support for Wagtail 2.9 and 2.10
Expand All @@ -10,6 +10,7 @@ Changelog
- Dropped support for Wagtail versions earlier than 2.7 (LTS)
- Replace deprecated ugettext, ugettext_lazy with gettext and gettext_lazy
- Replace deprecated force_text with force_str
- Fix: Languages in a Draft state result in failed routing from browser language


2.1 (03-02-2020)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.1.0'
version = u'2.2.0'
# The full version, including alpha/beta/rc tags.
release = u'0.1.0'
release = u'2.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
18 changes: 17 additions & 1 deletion docs/source/releases/2.2.rst
Expand Up @@ -11,13 +11,29 @@ Wagtailtrans 2.2 release notes
What is new
-----------


This release is a new minor as it will only be supporting Wagtail 2.7 (LTS) and up.

Features
~~~~~~~~

- Dropped support for Wagtail versions earlier than 2.7 (LTS)
- Adds support for Wagtail 2.9 and 2.10
- Make the permission `can_delete` compatible with Wagtail 2.10
- Make the page method `move` compatible with Wagtail 2.10

Bugfixes
~~~~~~~~

- Languages in a Draft state result in failed routing from browser language

Other
~~~~~

- Replace Django's deprecated ugettext, ugettext_lazy with gettext and gettext_lazy
- Replace Django's deprecated force_text with force_str

------------------------------
Backwards incompatible changes
------------------------------

This release drops offical support for Wagtail versions below 2.7 (LTS).
2 changes: 1 addition & 1 deletion src/wagtailtrans/__init__.py
@@ -1,6 +1,6 @@
default_app_config = 'wagtailtrans.apps.WagtailTransConfig'

VERSION = (2, 2, 0, 'dev1')
VERSION = (2, 2, 0, 'final')


def get_version():
Expand Down

0 comments on commit 21bc1f6

Please sign in to comment.