Skip to content

Commit

Permalink
Version bump 5.3.0
Browse files Browse the repository at this point in the history
Fixes #491
  • Loading branch information
nijel committed Sep 1, 2023
1 parent 2415e07 commit f611ede
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 1 addition & 4 deletions social_django/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "5.2.0"
__version__ = "5.3.0"


import django
Expand All @@ -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"

0 comments on commit f611ede

Please sign in to comment.