diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ad29e52..f667b19 100755 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,11 @@ +v0.6.0rc2: +- added RichTextFieldPanel to the default list of patched panels +- added settings to allow the patching of custom panels +- slug auto-population is now made the same way as wagtail (no changes in live pages) +- Fixed: When adding a page link in a translated RichTextField the link was always to the default language version of that page +- Fixed: Copy content of streamfield fails with 414 Request-URI Too Long +- Fixed: Panel patching failed with the error "AttributeError: 'list' object has no attribute 'children'" + v0.6.0rc1: - django-modeltranslation is now a dependency. - added compatibility with Python 3 (3.3, 3.4, 3.5). diff --git a/PKG-INFO b/PKG-INFO index f49df85..efd0dac 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: wagtail-modeltranslation -Version: 0.10b1 +Version: 0.10.1 Summary: Translates Wagtail CMS models using a registration approach. Home-page: https://github.com/infoportugal/wagtail-modeltranslation Author: InfoPortugal S.A. diff --git a/docs/Installation.rst b/docs/Installation.rst index d8ec67f..22997a1 100644 --- a/docs/Installation.rst +++ b/docs/Installation.rst @@ -7,7 +7,7 @@ Installation Requirements ============ -* Wagtail >= 1.4 +* Wagtail >= 1.12 @@ -89,7 +89,7 @@ To setup the application please follow these steps: To learn more about preparing Wagtail for Internationalisation check the `Wagtail i18n docs `_. -2. Create a ``translation.py`` file in your app directory and register ``TranslationOptions`` for every model you want to translate. +2. Create a ``translation.py`` file in your app directory and register ``TranslationOptions`` for every model you want to translate and for all subclasses of Page model. .. code-block:: console diff --git a/setup.cfg b/setup.cfg index 44e9441..4562b32 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10b1 +current_version = 0.10.1 commit = True tag = True diff --git a/setup.py b/setup.py index 2844293..e0f6910 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ setup( 'wagtail_modeltranslation.migrate.management.commands'], package_data={'wagtail_modeltranslation': ['static/wagtail_modeltranslation/css/*.css', 'static/wagtail_modeltranslation/js/*.js']}, - install_requires=['wagtail>=1.12', 'django-modeltranslation>=0.13b1'], + install_requires=['wagtail>=1.12', 'django-modeltranslation>=0.13'], classifiers=[ 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', diff --git a/wagtail_modeltranslation/__init__.py b/wagtail_modeltranslation/__init__.py index 140b320..61d9abb 100644 --- a/wagtail_modeltranslation/__init__.py +++ b/wagtail_modeltranslation/__init__.py @@ -1,3 +1,3 @@ # coding: utf-8 -__version__ = '0.10b1' +__version__ = '0.10.1' default_app_config = 'wagtail_modeltranslation.apps.ModeltranslationConfig'