From 608ab167b5f4d157e15bacfc540dd47aa24d0229 Mon Sep 17 00:00:00 2001 From: Stephen Rosen Date: Fri, 5 Jan 2024 13:23:08 -0600 Subject: [PATCH] Bump version and changelog for release --- changelog.adoc | 27 +++++++++++++++++++ ...1211_183203_kurtmckee_rename_timer_jobs.md | 5 ---- ...kurtmckee_localize_timer_scheduled_time.md | 3 --- ...172721_sirosen_mapped_collection_create.md | 4 --- ...0223_derek_gcs_subscription_id_sc_28587.md | 11 -------- ...2435_sirosen_handle_non_dict_gcs_detail.md | 4 --- src/globus_cli/version.py | 2 +- 7 files changed, 28 insertions(+), 28 deletions(-) delete mode 100644 changelog.d/20231211_183203_kurtmckee_rename_timer_jobs.md delete mode 100644 changelog.d/20231211_202324_kurtmckee_localize_timer_scheduled_time.md delete mode 100644 changelog.d/20231213_172721_sirosen_mapped_collection_create.md delete mode 100644 changelog.d/20231215_140223_derek_gcs_subscription_id_sc_28587.md delete mode 100644 changelog.d/20240103_182435_sirosen_handle_non_dict_gcs_detail.md diff --git a/changelog.adoc b/changelog.adoc index 7805b9c09..9320802b7 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,6 +2,33 @@ // scriv-insert-here +== 3.23.0 (2024-01-05) + +Bugfixes: + +* Fix the display of timer schedules. + +* Fix the error handling when `globus gcs collection create guest` encounters a + non-session error. + +Enhancements: + +* Add `globus gcs collection create mapped` as a new command for creating + mapped collections + +* Added a new command `globus gcs endpoint set-subscription-id` which allows + subscription managers and endpoint admins to modify the subscription ID for a + GCS endpoint. + +* Added a new command `globus gcp set-subscription-id` which allows subscription + managers and collection admins to modify the subscription ID for a GCP collection. + +Other: + +* User timers are now referred to as "timers" rather than as "jobs". + For example, the output of `globus timer list` now shows "Timer ID" + instead of "Job ID". + == 3.22.0 (2023-12-11) Enhancements: diff --git a/changelog.d/20231211_183203_kurtmckee_rename_timer_jobs.md b/changelog.d/20231211_183203_kurtmckee_rename_timer_jobs.md deleted file mode 100644 index f3a664ba6..000000000 --- a/changelog.d/20231211_183203_kurtmckee_rename_timer_jobs.md +++ /dev/null @@ -1,5 +0,0 @@ -### Other - -* User timers are now referred to as "timers" rather than as "jobs". - For example, the output of `globus timer list` now shows "Timer ID" - instead of "Job ID". diff --git a/changelog.d/20231211_202324_kurtmckee_localize_timer_scheduled_time.md b/changelog.d/20231211_202324_kurtmckee_localize_timer_scheduled_time.md deleted file mode 100644 index c76abfe30..000000000 --- a/changelog.d/20231211_202324_kurtmckee_localize_timer_scheduled_time.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bugfixes - -* Fix the display of timer schedules. diff --git a/changelog.d/20231213_172721_sirosen_mapped_collection_create.md b/changelog.d/20231213_172721_sirosen_mapped_collection_create.md deleted file mode 100644 index 85ad492f6..000000000 --- a/changelog.d/20231213_172721_sirosen_mapped_collection_create.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* Add `globus gcs collection create mapped` as a new command for creating - mapped collections diff --git a/changelog.d/20231215_140223_derek_gcs_subscription_id_sc_28587.md b/changelog.d/20231215_140223_derek_gcs_subscription_id_sc_28587.md deleted file mode 100644 index 41d8622e1..000000000 --- a/changelog.d/20231215_140223_derek_gcs_subscription_id_sc_28587.md +++ /dev/null @@ -1,11 +0,0 @@ - -### Enhancements - -* `[sc-28587] `_ - Added a new command `globus gcs endpoint set-subscription-id` which allows - subscription managers and endpoint admins to modify the subscription ID for a - GCS endpoint. - -* `[sc-28587] `_ - Added a new command `globus gcp set-subscription-id` which allows subscription - managers and collection admins to modify the subscription ID for a GCP collection. diff --git a/changelog.d/20240103_182435_sirosen_handle_non_dict_gcs_detail.md b/changelog.d/20240103_182435_sirosen_handle_non_dict_gcs_detail.md deleted file mode 100644 index 75b9aba43..000000000 --- a/changelog.d/20240103_182435_sirosen_handle_non_dict_gcs_detail.md +++ /dev/null @@ -1,4 +0,0 @@ -### Bugfixes - -* Fix the error handling when `globus gcs collection create guest` encounters a - non-session error. diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index 954e0df6f..b757f0b63 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.22.0" +__version__ = "3.23.0" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"