From 6bc79ae0af8151eceabaf99cf4731a632c29bf5e Mon Sep 17 00:00:00 2001 From: David Lord Date: Wed, 5 Oct 2016 21:26:20 -0700 Subject: [PATCH] update changelog include readme in setup again exclude tests directory from find_packages --- docs/changelog.rst | 11 ++++++++++- setup.py | 3 ++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index ab036aee..14a04b0a 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,7 +1,16 @@ Flask-WTF Changelog =================== -Full list of changes between each Flask-WTF release. +Version 0.13.1 +-------------- + +Released 2016/10/6 + +- Deprecation warning for ``Form`` is shown during ``__init__`` instead of immediately when subclassing. (`#262`_) +- Don't use ``pkg_resources`` to get version, for compatibility with GAE. (`#261`_) + +.. _`#261`: https://github.com/lepture/flask-wtf/issues/261 +.. _`#262`: https://github.com/lepture/flask-wtf/issues/262 Version 0.13 ------------ diff --git a/setup.py b/setup.py index 114ee7cb..cc6b6c79 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,8 @@ maintainer='Hsiaoming Yang', maintainer_email='me@lepture.com', description='Simple integration of Flask and WTForms.', - packages=find_packages(), + long_description=readme, + packages=find_packages(exclude=('tests',)), test_suite='nose.collector', zip_safe=False, platforms='any',