Skip to content

Commit 8749166

Browse files
committed
Version bump 5.3.0
Fixes #491
1 parent 2415e07 commit 8749166

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## Next - unreleased yet
8+
## [5.3.0](https://github.com/python-social-auth/social-app-django/releases/tag/5.2.0) - 2023-09-01
9+
10+
### Changed
11+
- Uses Django native JSON field
12+
913
## [5.2.0](https://github.com/python-social-auth/social-app-django/releases/tag/5.2.0) - 2023-03-31
1014

1115
### Changed

social_django/__init__.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "5.2.0"
1+
__version__ = "5.3.0"
22

33

44
import django
@@ -23,6 +23,3 @@ def fake_init(self, strategy=None, *args, **kwargs):
2323
if not getattr(BaseAuth, "__init_patched", False):
2424
BaseAuth.__init__ = baseauth_init_workaround(BaseAuth.__init__)
2525
BaseAuth.__init_patched = True
26-
27-
if django.VERSION < (3, 2):
28-
default_app_config = "social_django.apps.PythonSocialAuthConfig"

0 commit comments

Comments
 (0)