Skip to content

Commit

Permalink
form_designer v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Nov 21, 2019
1 parent aaf8c19 commit 49a7086
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Change log
Next version
------------


0.15
----

* Restructured the ``FIELD_TYPES`` data structure to use a dictionary
instead of a tuple to allow for future expansion.
* Dropped compatibility with Python 2.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ It is possible to add your own actions as well.
Installing the form designer
============================

Install the package using pip_::
Install the package using pip::

$ pip install form_designer

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, 14, 0)
VERSION = (0, 15, 0)
__version__ = ".".join(map(str, VERSION))

default_app_config = "form_designer.apps.FormDesignerConfig"

0 comments on commit 49a7086

Please sign in to comment.