From 9ed052c1048fe8208a48d506ce724dd620a5145b Mon Sep 17 00:00:00 2001 From: dcoa Date: Fri, 12 Apr 2024 22:14:34 +0000 Subject: [PATCH] =?UTF-8?q?docs(bumpversion):=20v11.1.0=20=E2=86=92=2011.1?= =?UTF-8?q?.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 12 ++++++++++++ eox_tenant/__init__.py | 2 +- setup.cfg | 6 +++--- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31d5bebd..c16c3fd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## v11.1.1 - 2024-04-12 + +### [11.1.1](https://github.com/eduNEXT/eox-tenant/compare/v11.1.0...v11.1.1) (2024-04-12) + +### Bug Fixes + +* correct user restriction behavior by sign up source in eox-tenant ([#201](https://github.com/eduNEXT/eox-tenant/issues/201)) ([b578820](https://github.com/eduNEXT/eox-tenant/commit/b578820ce23e156c4eed7fd9643bfce2d0337107)) + +### Code Refactoring + +* inherit from social auth exception ([#195](https://github.com/eduNEXT/eox-tenant/issues/195)) ([d0207e8](https://github.com/eduNEXT/eox-tenant/commit/d0207e861c90148f6aada2d1c533f03b1919e7bb)), closes [/github.com/python-social-auth/social-core/blob/29cbbd22b98d81d569a886b1cc0bd9a316cd124f/social_core/exceptions.py#L1](https://github.com/eduNEXT//github.com/python-social-auth/social-core/blob/29cbbd22b98d81d569a886b1cc0bd9a316cd124f/social_core/exceptions.py/issues/L1) [/github.com/python-social-auth/social-app-django/blob/5.4.0/social_django/middleware.py#L35](https://github.com/eduNEXT//github.com/python-social-auth/social-app-django/blob/5.4.0/social_django/middleware.py/issues/L35) [/github.com/openedx/edx-platform/blob/ebcbe1cd9208191c0589d7fe538c6ac13470abe6/common/djangoapps/third_party_auth/middleware.py#L18](https://github.com/eduNEXT//github.com/openedx/edx-platform/blob/ebcbe1cd9208191c0589d7fe538c6ac13470abe6/common/djangoapps/third_party_auth/middleware.py/issues/L18) + ## v11.1.0 - 2024-03-19 ### [11.1.0](https://github.com/eduNEXT/eox-tenant/compare/v11.0.2...v11.1.0) (2024-03-19) diff --git a/eox_tenant/__init__.py b/eox_tenant/__init__.py index 8939e222..2a41da72 100644 --- a/eox_tenant/__init__.py +++ b/eox_tenant/__init__.py @@ -1,4 +1,4 @@ """ Init for eox-tenant. """ -__version__ = '11.1.0' +__version__ = '11.1.1' diff --git a/setup.cfg b/setup.cfg index 6d246cf6..0febccfc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 11.1.0 +current_version = 11.1.1 commit = False tag = False @@ -7,7 +7,7 @@ tag = False [coverage:run] data_file = .coverage -omit = +omit = venv/* eox_tenant/edxapp_wrapper/backends/* @@ -21,7 +21,7 @@ statistics = True ignore = migrations,CVS generated-members = objects max-line-length = 120 -disable = +disable = too-few-public-methods, too-many-ancestors, duplicate-code,