diff --git a/CHANGELOG.md b/CHANGELOG.md index 885a1b47..096fd7ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ v2.0.0 +* Fixed bug where write_only fields still had their keys rendered +* Exception handler can now easily be used on DRF-JA views alongside regular DRF views +* Added `get_related_field_name` for views subclassing RelationshipView to override * Renamed `JSON_API_FORMAT_RELATION_KEYS` to `JSON_API_FORMAT_TYPES` to match what it was actually doing * Renamed `JSON_API_PLURALIZE_RELATION_TYPE` to `JSON_API_PLURALIZE_TYPES` * Documented ResourceRelatedField and RelationshipView diff --git a/README.rst b/README.rst index 960ebad9..d9e8a1d5 100644 --- a/README.rst +++ b/README.rst @@ -80,7 +80,7 @@ From PyPI :: - $ pip install djangorestframework-jsonapi==2.0.0-beta.2 + $ pip install djangorestframework-jsonapi From Source diff --git a/rest_framework_json_api/__init__.py b/rest_framework_json_api/__init__.py index a13e93bc..31f7af4a 100644 --- a/rest_framework_json_api/__init__.py +++ b/rest_framework_json_api/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- __title__ = 'djangorestframework-jsonapi' -__version__ = '2.0.0-beta.2' +__version__ = '2.0.0' __author__ = '' __license__ = 'MIT' __copyright__ = ''