diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | gitlab/_version.py | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index eef74e5..26c0aac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ <!--next-version-placeholder--> +## v3.8.1 (2022-08-10) +### Fix +* **client:** Do not assume user attrs returned for auth() ([`a07547c`](https://github.com/python-gitlab/python-gitlab/commit/a07547cba981380935966dff2c87c2c27d6b18d9)) + ## v3.8.0 (2022-08-04) ### Feature * **client:** Warn user on misconfigured URL in `auth()` ([`0040b43`](https://github.com/python-gitlab/python-gitlab/commit/0040b4337bae815cfe1a06f8371a7a720146f271)) diff --git a/gitlab/_version.py b/gitlab/_version.py index e8bbde2..1f38e20 100644 --- a/gitlab/_version.py +++ b/gitlab/_version.py @@ -3,4 +3,4 @@ __copyright__ = "Copyright 2013-2019 Gauvain Pocentek, 2019-2022 python-gitlab t __email__ = "gauvainpocentek@gmail.com" __license__ = "LGPL3" __title__ = "python-gitlab" -__version__ = "3.8.0" +__version__ = "3.8.1" |