From d96b740837fc96f80c660d0704a2071d3e556fa5 Mon Sep 17 00:00:00 2001 From: Jonathan Huot Date: Fri, 22 Mar 2024 21:18:25 +0100 Subject: [PATCH 1/2] Added package file --- tests/examples/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/examples/__init__.py diff --git a/tests/examples/__init__.py b/tests/examples/__init__.py new file mode 100644 index 00000000..e69de29b From a09d0abf72f53dde28e6695ac1a850bec575a0bb Mon Sep 17 00:00:00 2001 From: Jonathan Huot Date: Fri, 22 Mar 2024 21:19:21 +0100 Subject: [PATCH 2/2] Update 1.4.0 into 2.0.0 to be semver compliant. --- HISTORY.rst | 7 ++++++- requests_oauthlib/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5c918b40..2be3f345 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,7 @@ History ------- -v1.4.0 (27 Feb 2024) +v2.0.0 (22 March 2024) ++++++++++++++++++++++++ Full set of changes are in [github](https://github.com/requests/requests-oauthlib/milestone/4?closed=1). @@ -22,6 +22,11 @@ Additions & changes: - Updated dependencies - Cleanup some docs and examples +v1.4.0 (27 Feb 2024) +++++++++++++++++++++++++ + +- Version 2.0.0 published initially as 1.4.0, it was yanked eventually. + v1.3.1 (21 January 2022) ++++++++++++++++++++++++ diff --git a/requests_oauthlib/__init__.py b/requests_oauthlib/__init__.py index a71064cc..865d72fb 100644 --- a/requests_oauthlib/__init__.py +++ b/requests_oauthlib/__init__.py @@ -6,7 +6,7 @@ from .oauth2_auth import OAuth2 from .oauth2_session import OAuth2Session, TokenUpdated -__version__ = "1.4.0" +__version__ = "2.0.0" import requests