Updated docs;

bump bersion 0.10.1
This commit is contained in:
Diogo Marques 2019-03-21 17:10:58 +00:00
parent 7d9b42f542
commit 8deb0424f1
6 changed files with 14 additions and 6 deletions

View file

@ -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).

View file

@ -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.

View file

@ -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 <http://docs.wagtail.io/en/latest/advanced_topics/i18n/>`_.
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

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10b1
current_version = 0.10.1
commit = True
tag = True

View file

@ -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',

View file

@ -1,3 +1,3 @@
# coding: utf-8
__version__ = '0.10b1'
__version__ = '0.10.1'
default_app_config = 'wagtail_modeltranslation.apps.ModeltranslationConfig'