Skip to content

Commit 200bf24

Browse files
authored
Release version 4.0.0 (#849)
1 parent 1ee45f6 commit 200bf24

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

CHANGELOG.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ 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+
## [4.0.0] - 2020-10-31
1212

1313
This release is not backwards compatible. For easy migration best upgrade first to version
1414
3.2.0 and resolve all deprecation warnings before updating to 4.0.0
1515

1616
### Added
1717

18-
* Added support for Django REST framework 3.12
19-
* Added support for Django 3.1
20-
* Added support for Python 3.9
18+
* Added support for Django REST framework 3.12.
19+
* Added support for Django 3.1.
20+
* Added support for Python 3.9.
2121
* Added initial optional support for [openapi](https://www.openapis.org/) schema generation. Enable with:
2222
```
2323
pip install djangorestframework-jsonapi['openapi']
@@ -32,17 +32,18 @@ This release is not backwards compatible. For easy migration best upgrade first
3232
* Removed support for Python 3.5.
3333
* Removed support for Django 1.11.
3434
* Removed support for Django 2.1.
35-
* Removed support for Django REST framework 3.10, 3.11
36-
* Removed obsolete `source` argument of `SerializerMethodResourceRelatedField`
37-
* Removed obsolete setting `JSON_API_SERIALIZE_NESTED_SERIALIZERS_AS_ATTRIBUTE` to render nested serializers as relationships. Default is as attribute now.
35+
* Removed support for Django REST framework 3.10 and 3.11.
36+
* Removed obsolete `source` argument of `SerializerMethodResourceRelatedField`.
37+
* Removed obsolete setting `JSON_API_SERIALIZE_NESTED_SERIALIZERS_AS_ATTRIBUTE` to render nested serializers as relationships.
38+
Default is render as attribute now.
3839

3940
### Fixed
4041

41-
* Stopped `SparseFieldsetsMixin` interpretting invalid fields query parameter (e.g. invalidfields[entries]=blog,headline)
42+
* Stopped `SparseFieldsetsMixin` interpretting invalid fields query parameter (e.g. invalidfields[entries]=blog,headline).
4243

4344
## [3.2.0] - 2020-08-26
4445

45-
This is the last release supporting Django 1.11, Django 2.1, DRF 3.10, DRF 3.11 and Python 3.5.
46+
This is the last release supporting Django 1.11, Django 2.1, Django REST Framework 3.10, Django REST Framework 3.11 and Python 3.5.
4647

4748
### Added
4849

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.2.0'
4+
__version__ = '4.0.0'
55
__author__ = ''
66
__license__ = 'BSD'
77
__copyright__ = ''

0 commit comments

Comments
 (0)