Skip to content

Commit

Permalink
prepare 0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed May 9, 2017
1 parent 007f6a4 commit 81c0325
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 16 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,14 @@ are used for versioning (schema follows below):
0.3.4 to 0.4).
- All backwards incompatible changes are mentioned in this document.

0.11
----
0.11.2
------
2017-05-09

- Minor fixes in ``drf_integration`` app.

0.11.1
------
2017-05-08

- Minor fixes in ``decimal`` plugin.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from distutils.version import LooseVersion
from setuptools import setup, find_packages

version = '0.11.1'
version = '0.11.2'

# ***************************************************************************
# ************************** Python version *********************************
Expand Down
4 changes: 2 additions & 2 deletions src/fobi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'django-fobi'
__version__ = '0.11.1'
__build__ = 0x00007c
__version__ = '0.11.2'
__build__ = 0x00007d
__author__ = 'Artur Barseghyan <[email protected]>'
__copyright__ = '2014-2017 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
Expand Down
22 changes: 11 additions & 11 deletions src/fobi/contrib/apps/drf_integration/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,17 +232,17 @@ def submit_plugin_form_data(form_entry,
)
if custom_plugin_cls:
custom_plugin = custom_plugin_cls()
updated_serializer = \
custom_plugin._submit_plugin_form_data(
form_element_plugin=form_element_plugin,
form_entry=form_entry,
request=request,
serializer=serializer,
form_element_entries=form_element_entries,
**kwargs
)
if updated_serializer:
serializer = updated_serializer
updated_serializer = \
custom_plugin._submit_plugin_form_data(
form_element_plugin=form_element_plugin,
form_entry=form_entry,
request=request,
serializer=serializer,
form_element_entries=form_element_entries,
**kwargs
)
if updated_serializer:
serializer = updated_serializer

return serializer

Expand Down

0 comments on commit 81c0325

Please sign in to comment.