From f3463bdb87a206612bc1c20b9fdfa312938e8733 Mon Sep 17 00:00:00 2001 From: David THENON Date: Fri, 25 Sep 2015 18:02:44 +0200 Subject: [PATCH] * Fixed bugs with button layout elements since django-crispy-forms==1.5.x, this is backward compatible with previous django-crispy-forms<1.5.x (with pull request #26 to close #25); * Fixed package infos and README to be more explicit on Django compatibility (1.4 to 1.8 actually tested); * Bump to 0.5.3; --- crispy_forms_foundation/__init__.py | 2 +- docs/changelog.rst | 6 ++++++ docs/index.rst | 3 +++ setup.py | 7 ++++++- 4 files changed, 16 insertions(+), 2 deletions(-) diff --git a/crispy_forms_foundation/__init__.py b/crispy_forms_foundation/__init__.py index 49cd274..e18fb3e 100644 --- a/crispy_forms_foundation/__init__.py +++ b/crispy_forms_foundation/__init__.py @@ -2,4 +2,4 @@ """ Django application to add 'django-crispy-forms' layout objects for Foundation """ -__version__ = '0.5.2' +__version__ = '0.5.3' diff --git a/docs/changelog.rst b/docs/changelog.rst index ea2af01..95d2645 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,12 @@ Changelog ========= +Version 0.5.3 +************* + +* Fixed bugs with button layout elements since django-crispy-forms==1.5.x, this is backward compatible with previous django-crispy-forms<1.5.x (with pull request #26 to close #25); +* Fixed package infos and README to be more explicit on Django compatibility (1.4 to 1.8 actually tested); + Version 0.5.2 ************* diff --git a/docs/index.rst b/docs/index.rst index 457aed5..d96941a 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -26,6 +26,7 @@ Links Requires ======== +* `Django`_ >= 1.4.x; * `django-crispy-forms`_ >= 1.4.x; Table of contents @@ -47,9 +48,11 @@ Contributors .. _`@jayarnielsen`: https://github.com/jayarnielsen .. _`@carsolcas`: https://github.com/carsolcas .. _`@sbaechler`: https://github.com/sbaechler +.. _`@bionikspoon`: https://github.com/bionikspoon * Philip Garnero (`@PhilipGarnero`_); * Juerg Rast (`@jrast`_); * JR (`@jayarnielsen`_); * Carsolcas (`@carsolcas`_); * Simon Bächler (`@sbaechler`_); +* Manu Phatak (`@bionikspoon`_); diff --git a/setup.py b/setup.py index 2a7ffb4..dc9c304 100644 --- a/setup.py +++ b/setup.py @@ -14,9 +14,14 @@ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", + "Framework :: Django :: 1.4", + "Framework :: Django :: 1.5", + "Framework :: Django :: 1.6", + "Framework :: Django :: 1.7", + "Framework :: Django :: 1.8", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", - "Programming Language :: JavaScript", + "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3",