Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
include readme in setup again
exclude tests directory from find_packages
  • Loading branch information
davidism committed Oct 6, 2016
1 parent bd12c97 commit 6bc79ae
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 10 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -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
------------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
maintainer='Hsiaoming Yang',
maintainer_email='[email protected]',
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',
Expand Down

0 comments on commit 6bc79ae

Please sign in to comment.