From cb4b4297b25cb34953cacfc9bf6cc785cb9e2edd Mon Sep 17 00:00:00 2001 From: shashi278 Date: Sat, 15 May 2021 18:01:19 +0530 Subject: [PATCH] Updated version and changelog --- README.md | 4 ++++ kivyauth/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5318dd1..491ff4d 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ ## ### Changelog +#### v2.3.2 + * Fixed crashing when user doesn't have a photo + + #### v2.3.1 - KivyAuth cross-platform * Kivyauth APIs are now platform-independent * Desktop support for linux, win and possibly mac diff --git a/kivyauth/__init__.py b/kivyauth/__init__.py index 63129af..3f2894b 100644 --- a/kivyauth/__init__.py +++ b/kivyauth/__init__.py @@ -1,7 +1,7 @@ from kivy.logger import Logger from kivy.utils import platform -__version__ = "2.3.1" +__version__ = "2.3.2" _log_message = "KivyAuth:" + f" {__version__}" + f' (installed at "{__file__}")' __all__ = ("login_providers", "auto_login")