From 05fcb33b2d70a5d484d5a072be4d24cc5c84db59 Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Thu, 20 Sep 2018 10:00:51 +0200 Subject: [PATCH] Release 2.6.0 --- CHANGELOG.md | 4 ++-- rest_framework_json_api/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 348fe53e..749ed888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Note that in line with [Django REST Framework policy](http://www.django-rest-framework.org/topics/release-notes/), any parts of the framework not mentioned in the documentation should generally be considered private API, and may be subject to change. -## [Unreleased] +## [2.6.0] - 2018-09-20 ### Added @@ -21,7 +21,7 @@ any parts of the framework not mentioned in the documentation should generally b * Deprecate `MultipleIDMixin` because it doesn't comply with the JSON:API 1.0 spec. Replace it with `DjangoFilterBackend` and **change clients** to use `filter[id.in]` query parameter instead of `ids[]`. - See [usage docs](docs/usage.md#djangofilterbackend). + See [usage docs](docs/usage.md#djangofilterbackend). You also have the option to copy the mixin into your code. ### Changed diff --git a/rest_framework_json_api/__init__.py b/rest_framework_json_api/__init__.py index e30504ed..5a34935c 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.5.0' +__version__ = '2.6.0' __author__ = '' __license__ = 'MIT' __copyright__ = ''