Skip to content

Commit 8730481

Browse files
slivercn2ygk
authored andcommitted
Release 3.0.0 (#724)
* Release version 3.0.0
1 parent 83b6815 commit 8730481

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

CHANGELOG.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@ 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.0.0] - 2019-10-14
1212

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

1616
### Added
1717

18-
* Add support for Django REST framework 3.10.
19-
* Add code from ErrorDetail into the JSON:API error object
18+
* Added support for Django REST framework 3.10.
19+
* Added code from `ErrorDetail` into the JSON:API error object.
2020

2121
### Changed
2222

2323
* Moved dependency definition for `django-polymorphic` and `django-filter` into extra requires.
2424
Hence dependencies of each optional module can be installed with pip using
25-
```
25+
```
2626
pip install djangorestframework-jsonapi['django-polymorphic']
27-
pip install djangorestframework-jsonapi['django-filter']`
28-
```
27+
pip install djangorestframework-jsonapi['django-filter']
28+
```
2929

3030
### Removed
3131

@@ -42,14 +42,14 @@ This release is not backwards compatible. For easy migration best upgrade first
4242

4343
### Fixed
4444

45-
* Avoid printing invalid pointer when api returns 404
46-
* Avoid exception when using `ResourceIdentifierObjectSerializer` with unexisting primary key
47-
* Format metadata field names correctly for OPTIONS request
45+
* Avoid printing invalid pointer when api returns 404.
46+
* Avoid exception when using `ResourceIdentifierObjectSerializer` with unexisting primary key.
47+
* Format metadata field names correctly for OPTIONS request.
4848

4949

5050
## [2.8.0] - 2019-06-13
5151

52-
This is the last release supporting Python 2.7, Python 3.4, Django Filter 1.1, Django REST Framework <=3.8 and Django 2.0.
52+
This is the last release supporting Python 2.7, Python 3.4, Django Filter 1.1, Django REST Framework <=3.9 and Django 2.0.
5353

5454
### Added
5555

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__ = '2.8.0'
4+
__version__ = '3.0.0'
55
__author__ = ''
66
__license__ = 'BSD'
77
__copyright__ = ''

0 commit comments

Comments
 (0)