diff --git a/changelog.adoc b/changelog.adoc index b7b135c29..5b8bbf906 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,6 +2,29 @@ // scriv-insert-here +== 3.31.0 (2024-10-15) + +Bugfixes: + +* Fix a whitespace issue in the `globus collection update` help text. + +Enhancements: + +* Added a `--terms-and-conditions` option to the `globus group update` command. + +Other: + +* The CLI has removed remaining support for endpoint activation. + + * Activation commands such as `globus endpoint is-activated` are already + hidden, but now act as no-ops when invoked and emit warnings to stderr + about their upcoming removal. + + * The `--skip-activation-check` option for Transfer task submission has + been deprecated. + + * `Activated` is no longer a field in `globus endpoint show` output. + == 3.30.1 (2024-08-20) Bugfixes: diff --git a/changelog.d/20240828_101834_sirosen_activation2stub.md b/changelog.d/20240828_101834_sirosen_activation2stub.md deleted file mode 100644 index 2d11a64f3..000000000 --- a/changelog.d/20240828_101834_sirosen_activation2stub.md +++ /dev/null @@ -1,12 +0,0 @@ -### Other - -* The CLI has removed remaining support for endpoint activation. - - * Activation commands such as `globus endpoint is-activated` are already - hidden, but now act as no-ops when invoked and emit warnings to stderr - about their upcoming removal. - - * The `--skip-activation-check` option for Transfer task submission has - been deprecated. - - * `Activated` is no longer a field in `globus endpoint show` output. diff --git a/changelog.d/20240917_160258_kurtmckee_fix_collection_update_help_text.md b/changelog.d/20240917_160258_kurtmckee_fix_collection_update_help_text.md deleted file mode 100644 index ad647588d..000000000 --- a/changelog.d/20240917_160258_kurtmckee_fix_collection_update_help_text.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bugfixes - -* Fix a whitespace issue in the `globus collection update` help text. diff --git a/changelog.d/20241015_133817_derek_groups_update_terms_and_conditions.md b/changelog.d/20241015_133817_derek_groups_update_terms_and_conditions.md deleted file mode 100644 index 5dc5f3360..000000000 --- a/changelog.d/20241015_133817_derek_groups_update_terms_and_conditions.md +++ /dev/null @@ -1,4 +0,0 @@ - -### Enhancements - -* Added a `--terms-and-conditions` option to the `globus group update` command. diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index 549d92610..9e8a08a83 100644 --- a/src/globus_cli/version.py +++ b/src/globus_cli/version.py @@ -7,7 +7,7 @@ # single source of truth for package version, # see https://packaging.python.org/en/latest/single_source_version/ -__version__ = "3.30.1" +__version__ = "3.31.0" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"