Skip to content

Commit

Permalink
Update version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ruscoder committed Jun 22, 2017
1 parent dbd2139 commit 225e5ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.2.0
* Add support for custom primary key field #10 (@tjwalch)
* Add posibility to pass through argument from serializer.save method (@tjwalch)
* Add posibility to update direct relations on create

## 0.1.4
* Add support for GenericRelation (@tjwalch)

Expand Down
2 changes: 1 addition & 1 deletion drf_writable_nested/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = 'DRF writable nested'
__version__ = '0.1.4'
__version__ = '0.2.0'
__author__ = 'beda.software'
__license__ = 'BSD 2-Clause'
__copyright__ = 'Copyright 2014-2017 beda.software'
Expand Down
2 changes: 1 addition & 1 deletion drf_writable_nested/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def get_save_kwargs(self, field_name):
save_kwargs = self.save_kwargs[field_name]
if not isinstance(save_kwargs, dict):
raise TypeError(
_("Arguments to nested serialiser's `save` must be dict's")
_("Arguments to nested serializer's `save` must be dict's")
)
return save_kwargs

Expand Down

0 comments on commit 225e5ae

Please sign in to comment.