Skip to content

Commit

Permalink
form_designer v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Feb 1, 2019
1 parent c578480 commit c4a5640
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change log
==========

0.13
----

* Added `tox <https://tox.readthedocs.io/>`__ configuration for easily
running linters and tests locally.
* Reformatted the project using `black
Expand All @@ -10,6 +13,8 @@ Change log
* Replaced the CSV export with an XLSX export based on `xlsxdocument
<https://github.com/matthiask/xlsxdocument>`__. It just is a better
format.
* Improved the test coverage a bit and fixed an edge case where
form field model validation would crash.


0.12
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Install the package using pip_::
Setting up the form designer
============================

- Add ``'form_designer'`` to ``INSTALLED_APPS``.
- Add ``'form_designer'`` and ``'admin_ordering'`` to ``INSTALLED_APPS``.
- Run ``./manage.py migrate form_designer``
- Go into Django's admin panel and add one or more forms with the fields you
require. Also select at least one action in the configuration options
Expand Down
2 changes: 1 addition & 1 deletion form_designer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 12, 0)
VERSION = (0, 13, 0)
__version__ = ".".join(map(str, VERSION))

default_app_config = "form_designer.apps.FormDesignerConfig"

0 comments on commit c4a5640

Please sign in to comment.