From db1be666c0e9caa6db51a1b01debb7c59f333958 Mon Sep 17 00:00:00 2001 From: Eshaan Bansal Date: Thu, 20 Jan 2022 16:51:06 +0530 Subject: [PATCH] Release: v0.4.0 --- docs/source/changelog.rst | 13 +++++++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 13fbd39..da8d2ab 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,19 @@ Changelog ============ +`v0.4.0 `__ +-------------------------------------------------------------------------------- + +**Breaking Changes:** + +- Remove the hard-coding of ``authentication_classes``, ``permission_classes`` variables in :doc:`views`. + Meaning they will now use the defaults set under ``REST_FRAMEWORK`` in ``settings.py`` + +**Other:** +- Support for Python 3.10. Enable CI tests for same. +- Support for Django 4.0. Enable CI tests for same. + + `v0.3.0 `__ -------------------------------------------------------------------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index f1367af..bb5c293 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -31,9 +31,9 @@ copyright = "2020, Eshaan Bansal" author = "Eshaan Bansal" -version = "0.3.0" +version = "0.4.0" # The full version, including alpha/beta/rc tags -release = "v0.3.0" +release = "v0.4.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 1636c8a..e2f2f1c 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name="django-rest-durin", url=GITHUB_URL, - version="0.3.0", + version="0.4.0", license="MIT", description=""" Per API client token authentication Module for django rest framework.