Skip to content

Commit 8a02676

Browse files
authored
Release version 3.1.0 (#768)
1 parent 9d11e8a commit 8a02676

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
Note that in line with [Django REST Framework policy](http://www.django-rest-framework.org/topics/release-notes/),
99
any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change.
1010

11-
## [Unreleased]
11+
## [3.1.0] - 2020-02-08
1212

1313
### Added
1414

@@ -18,10 +18,10 @@ any parts of the framework not mentioned in the documentation should generally b
1818

1919
### Fixed
2020

21-
* Ensure that `409 Conflict` is returned when processing a `PATCH` request in which the resource object’s type and id do not match the server’s endpoint properly as outlined in [JSON:API](https://jsonapi.org/format/#crud-updating-responses-409) spec.
21+
* Ensured that `409 Conflict` is returned when processing a `PATCH` request in which the resource object’s type and id do not match the server’s endpoint as outlined in [JSON:API](https://jsonapi.org/format/#crud-updating-responses-409) spec.
2222
* Properly return parser error when primary data is of invalid type
23-
* Pass instance to child serializer when `PolymorphicModelSerializer` inits it in `to_internal_value`
24-
* Handle serialization of related resources on inherited polymorphic models that are absent on the base model
23+
* Pass instance to child serializers when using `PolymorphicModelSerializer`
24+
* Properly resolve related resource type when using `PolymorphicModelSerializer`
2525

2626
## [3.0.0] - 2019-10-14
2727

rest_framework_json_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
__title__ = 'djangorestframework-jsonapi'
4-
__version__ = '3.0.0'
4+
__version__ = '3.1.0'
55
__author__ = ''
66
__license__ = 'BSD'
77
__copyright__ = ''

0 commit comments

Comments
 (0)