From 14972236ef77a1d8054306b9a4a422a53a088910 Mon Sep 17 00:00:00 2001 From: Derek Schlabach Date: Mon, 29 Jan 2024 13:52:24 -0600 Subject: [PATCH] Bump version and changelog for release --- ...31218_161848_sirosen_fix_create_policy.rst | 6 ---- ...26_124046_derek_missing_session_params.rst | 13 -------- ...time_deprecation_for_operation_symlink.rst | 5 ---- changelog.rst | 30 +++++++++++++++++++ src/globus_sdk/version.py | 2 +- 5 files changed, 31 insertions(+), 25 deletions(-) delete mode 100644 changelog.d/20231218_161848_sirosen_fix_create_policy.rst delete mode 100644 changelog.d/20240126_124046_derek_missing_session_params.rst delete mode 100644 changelog.d/20240129_105042_sirosen_runtime_deprecation_for_operation_symlink.rst diff --git a/changelog.d/20231218_161848_sirosen_fix_create_policy.rst b/changelog.d/20231218_161848_sirosen_fix_create_policy.rst deleted file mode 100644 index 13345c27c..000000000 --- a/changelog.d/20231218_161848_sirosen_fix_create_policy.rst +++ /dev/null @@ -1,6 +0,0 @@ -Changed -~~~~~~~ - -- The argument specification for ``AuthClient.create_policy`` was incorrect. - The corrected method will emit deprecation warnings if called with positional - arguments, as the corrected version uses keyword-only arguments. (:pr:`936`) diff --git a/changelog.d/20240126_124046_derek_missing_session_params.rst b/changelog.d/20240126_124046_derek_missing_session_params.rst deleted file mode 100644 index 081528618..000000000 --- a/changelog.d/20240126_124046_derek_missing_session_params.rst +++ /dev/null @@ -1,13 +0,0 @@ - -Added -~~~~~ - -- Added a `session_required_mfa` parameter to the `AuthorizationParameterInfo` error - info object and `oauth2_get_authorize_url` method (:pr:`939`) - -Fixed -~~~~~ - -- Included documentation in `AuthorizationParameterInfo` for `session_required_policies` - (:pr:`939`) - diff --git a/changelog.d/20240129_105042_sirosen_runtime_deprecation_for_operation_symlink.rst b/changelog.d/20240129_105042_sirosen_runtime_deprecation_for_operation_symlink.rst deleted file mode 100644 index 050e949b5..000000000 --- a/changelog.d/20240129_105042_sirosen_runtime_deprecation_for_operation_symlink.rst +++ /dev/null @@ -1,5 +0,0 @@ -Deprecated -~~~~~~~~~~ - -- ``TransferClient.operation_symlink`` is now officially deprecated and will - emit a ``RemovedInV4Warning`` if used. (:pr:`942`) diff --git a/changelog.rst b/changelog.rst index 42a259dec..38b3132ed 100644 --- a/changelog.rst +++ b/changelog.rst @@ -12,6 +12,36 @@ to a major new version of the SDK. .. scriv-insert-here +.. _changelog-3.35.0: + +v3.35.0 (2024-01-29) +-------------------- + +Added +~~~~~ + +- Added a `session_required_mfa` parameter to the `AuthorizationParameterInfo` error + info object and `oauth2_get_authorize_url` method (:pr:`939`) + +Changed +~~~~~~~ + +- The argument specification for ``AuthClient.create_policy`` was incorrect. + The corrected method will emit deprecation warnings if called with positional + arguments, as the corrected version uses keyword-only arguments. (:pr:`936`) + +Deprecated +~~~~~~~~~~ + +- ``TransferClient.operation_symlink`` is now officially deprecated and will + emit a ``RemovedInV4Warning`` if used. (:pr:`942`) + +Fixed +~~~~~ + +- Included documentation in `AuthorizationParameterInfo` for `session_required_policies` + (:pr:`939`) + .. _changelog-3.34.0: v3.34.0 (2024-01-02) diff --git a/src/globus_sdk/version.py b/src/globus_sdk/version.py index fc1b31ac9..e9354122a 100644 --- a/src/globus_sdk/version.py +++ b/src/globus_sdk/version.py @@ -1,3 +1,3 @@ # single source of truth for package version, # see https://packaging.python.org/en/latest/single_source_version/ -__version__ = "3.34.0" +__version__ = "3.35.0"