From 03da447ef0854b0e6a6f8ff39d9281d11efc8587 Mon Sep 17 00:00:00 2001 From: Diederik van der Boor Date: Wed, 21 Dec 2016 10:50:30 +0100 Subject: [PATCH] Bump to v1.1.11 --- CHANGES.rst | 7 +++++++ docs/conf.py | 4 ++-- fluent_contents/__init__.py | 2 +- setup.py | 3 ++- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1e3e3b9d..fe12708a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,13 @@ Changelog ========= +Changes in 1.1.11 (2016-12-21) +------------------------------ + +* Fixed "Copy language" button for Django 1.10+ +* Fix slot parameter for tests ``fluent_contents.tests.factories.create_placeholder()`` + + Changes in 1.1.10 (2016-12-15) ------------------------------ diff --git a/docs/conf.py b/docs/conf.py index bc9877a2..630b4a65 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = '1.1.10' +version = '1.1.11' # The full version, including alpha/beta/rc tags. -release = '1.1.10' +release = '1.1.11' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/fluent_contents/__init__.py b/fluent_contents/__init__.py index 9e29c1c2..5c0fa47a 100644 --- a/fluent_contents/__init__.py +++ b/fluent_contents/__init__.py @@ -1,2 +1,2 @@ # following PEP 440 -__version__ = "1.1.10" +__version__ = "1.1.11" diff --git a/setup.py b/setup.py index 6f1b5eeb..864882a2 100755 --- a/setup.py +++ b/setup.py @@ -98,11 +98,12 @@ def find_version(*parts): 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Framework :: Django', - 'Framework :: Django :: 1.4', 'Framework :: Django :: 1.5', 'Framework :: Django :: 1.6', 'Framework :: Django :: 1.7', 'Framework :: Django :: 1.8', + 'Framework :: Django :: 1.9', + 'Framework :: Django :: 1.10', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Application Frameworks',