From 5e5827a6a2c31e45e379b850c0e64d5210491030 Mon Sep 17 00:00:00 2001 From: Stephen Rosen Date: Fri, 5 Nov 2021 18:07:34 +0000 Subject: [PATCH] Bump version and changelog for release --- changelog.adoc | 18 ++++++++++++++++++ ...3_sirosen_update_personal_setup_helptext.md | 4 ---- ...20_193916_sirosen_fix_empty_recursive_ls.md | 4 ---- ...1102_153856_sirosen_fix_stale_batch_text.md | 4 ---- ...11103_221444_sirosen_fix_session_consent.md | 5 ----- ...5_084824_kurtmckee_task_event_list_crash.md | 3 --- src/globus_cli/version.py | 2 +- 7 files changed, 19 insertions(+), 21 deletions(-) delete mode 100644 changelog.d/20211020_173613_sirosen_update_personal_setup_helptext.md delete mode 100644 changelog.d/20211020_193916_sirosen_fix_empty_recursive_ls.md delete mode 100644 changelog.d/20211102_153856_sirosen_fix_stale_batch_text.md delete mode 100644 changelog.d/20211103_221444_sirosen_fix_session_consent.md delete mode 100644 changelog.d/20211105_084824_kurtmckee_task_event_list_crash.md diff --git a/changelog.adoc b/changelog.adoc index f33901c49..fc9706c0a 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,6 +2,24 @@ // scriv-insert-here +== 3.1.3 (2021-11-05) + +Enhancements: + +* The `--help` text for `globus endpoint create` now clarifies the meaning of `--personal`. +* Errors for use of mutually exclusive options to `globus endpoint create` have been improved. + +Bugfixes: + +* Fix an error when `globus ls --recursive` is used on an empty directory, or + filtered such that a recursive listing has no results +* The help text printed by `--batch` when stdin is a tty has been removed. This + text explained CLI v2.x behavior, and is not accurate for CLI v3.x +* Fix a bug in `globus session consent` in which an `id_token` was expected as + part of the token data, but the `openid` scope was not provided to the login + flow +* Fix a crash that occurs when running `globus task event-list {task-id}` + == 3.1.2 (2021-10-13) Bugfixes: diff --git a/changelog.d/20211020_173613_sirosen_update_personal_setup_helptext.md b/changelog.d/20211020_173613_sirosen_update_personal_setup_helptext.md deleted file mode 100644 index 20515ee97..000000000 --- a/changelog.d/20211020_173613_sirosen_update_personal_setup_helptext.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* The `--help` text for `globus endpoint create` now clarifies the meaning of `--personal`. -* Errors for use of mutually exclusive options to `globus endpoint create` have been improved. diff --git a/changelog.d/20211020_193916_sirosen_fix_empty_recursive_ls.md b/changelog.d/20211020_193916_sirosen_fix_empty_recursive_ls.md deleted file mode 100644 index fce4a7589..000000000 --- a/changelog.d/20211020_193916_sirosen_fix_empty_recursive_ls.md +++ /dev/null @@ -1,4 +0,0 @@ -### Bugfixes - -* Fix an error when `globus ls --recursive` is used on an empty directory, or - filtered such that a recursive listing has no results diff --git a/changelog.d/20211102_153856_sirosen_fix_stale_batch_text.md b/changelog.d/20211102_153856_sirosen_fix_stale_batch_text.md deleted file mode 100644 index bc22f4e0c..000000000 --- a/changelog.d/20211102_153856_sirosen_fix_stale_batch_text.md +++ /dev/null @@ -1,4 +0,0 @@ -### Bugfixes - -* The help text printed by `--batch` when stdin is a tty has been removed. This - text explained CLI v2.x behavior, and is not accurate for CLI v3.x diff --git a/changelog.d/20211103_221444_sirosen_fix_session_consent.md b/changelog.d/20211103_221444_sirosen_fix_session_consent.md deleted file mode 100644 index 83a677695..000000000 --- a/changelog.d/20211103_221444_sirosen_fix_session_consent.md +++ /dev/null @@ -1,5 +0,0 @@ -### Bugfixes - -* Fix a bug in `globus session consent` in which an `id_token` was expected as - part of the token data, but the `openid` scope was not provided to the login - flow diff --git a/changelog.d/20211105_084824_kurtmckee_task_event_list_crash.md b/changelog.d/20211105_084824_kurtmckee_task_event_list_crash.md deleted file mode 100644 index 6d6706c95..000000000 --- a/changelog.d/20211105_084824_kurtmckee_task_event_list_crash.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bugfixes - -* Fix a crash that occurs when running `globus task event-list {task-id}`. diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index 25053b04a..5b57610e9 100644 --- a/src/globus_cli/version.py +++ b/src/globus_cli/version.py @@ -2,7 +2,7 @@ # single source of truth for package version, # see https://packaging.python.org/en/latest/single_source_version/ -__version__ = "3.1.2" +__version__ = "3.1.3" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"