Skip to content

Commit 0fcede4

Browse files
authored
Release 4.2.0 (#937)
1 parent 16a3d6b commit 0fcede4

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

CHANGELOG.md

+3-6
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+
## [4.2.0] - 2021-05-03
1212

1313
### Added
1414

@@ -26,16 +26,13 @@ any parts of the framework not mentioned in the documentation should generally b
2626
name='order-related'),
2727
```
2828
* Ensure default `included_resources` are considered when calculating prefetches.
29-
29+
* Avoided error when using `include` query parameter on related urls (a regression since 4.1.0)
3030

3131
### Deprecated
3232

3333
* Deprecated default `format_type` argument of `rest_framework_json_api.utils.format_value`. Use `rest_framework_json_api.utils.format_field_name` or specify specifc `format_type` instead.
34-
* Deprecated `format_type` argument of `rest_framework_json_api.utils.format_link_segment`. Use `format_value` instead.
34+
* Deprecated `format_type` argument of `rest_framework_json_api.utils.format_link_segment`. Use `rest_framework_json_api.utils.format_value` instead.
3535

36-
### Fixed
37-
38-
* Avoided error when using `include` query parameter on related urls (a regression since 4.1.0)
3936

4037
## [4.1.0] - 2021-03-08
4138

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__ = "4.1.0"
4+
__version__ = "4.2.0"
55
__author__ = ""
66
__license__ = "BSD"
77
__copyright__ = ""

0 commit comments

Comments
 (0)