From 874916626cf1a3e4235712076908f1b1018d7158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 1 Sep 2023 13:14:27 +0200 Subject: [PATCH] Version bump 5.3.0 Fixes #491 --- CHANGELOG.md | 6 +++++- social_django/__init__.py | 5 +---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b1073b8..42a56a54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Next - unreleased yet +## [5.3.0](https://github.com/python-social-auth/social-app-django/releases/tag/5.2.0) - 2023-09-01 + +### Changed +- Uses Django native JSON field + ## [5.2.0](https://github.com/python-social-auth/social-app-django/releases/tag/5.2.0) - 2023-03-31 ### Changed diff --git a/social_django/__init__.py b/social_django/__init__.py index 2d1a7c2b..ddd26e43 100644 --- a/social_django/__init__.py +++ b/social_django/__init__.py @@ -1,4 +1,4 @@ -__version__ = "5.2.0" +__version__ = "5.3.0" import django @@ -23,6 +23,3 @@ def fake_init(self, strategy=None, *args, **kwargs): if not getattr(BaseAuth, "__init_patched", False): BaseAuth.__init__ = baseauth_init_workaround(BaseAuth.__init__) BaseAuth.__init_patched = True - -if django.VERSION < (3, 2): - default_app_config = "social_django.apps.PythonSocialAuthConfig"