diff --git a/changelog.adoc b/changelog.adoc index f0b158c78..bb019020c 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,6 +2,20 @@ // scriv-insert-here +== 3.8.0 (2022-08-31) + +## Enhancements + +* The globus CLI is now faster to start in many cases. Tab completions are most + significantly improved, but other commands may demonstrate an improvement as + well + +* Add the `globus api timer` command for direct interactions with the Globus + Timer service + +* Order `globus task list` by descending request time to prioritise + newer tasks in default output + == 3.7.0 (2022-08-05) ## Bugfixes diff --git a/changelog.d/20220602_153909_sirosen_half_lazy_imports.md b/changelog.d/20220602_153909_sirosen_half_lazy_imports.md deleted file mode 100644 index f914593e7..000000000 --- a/changelog.d/20220602_153909_sirosen_half_lazy_imports.md +++ /dev/null @@ -1,5 +0,0 @@ -### Enhancements - -* The globus CLI is now faster to start in many cases. Tab completions are most - significantly improved, but other commands may demonstrate an improvement as - well diff --git a/changelog.d/20220808_181413_sirosen_add_timer_api_command.md b/changelog.d/20220808_181413_sirosen_add_timer_api_command.md deleted file mode 100644 index b14c29687..000000000 --- a/changelog.d/20220808_181413_sirosen_add_timer_api_command.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* Add the `globus api timer` command for direct interactions with the Globus - Timer service diff --git a/changelog.d/20220818_112600_aaschaer_task_order.md b/changelog.d/20220818_112600_aaschaer_task_order.md deleted file mode 100644 index b4324fb70..000000000 --- a/changelog.d/20220818_112600_aaschaer_task_order.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* Order `globus task list` by descending request time to prioritise - newer tasks in default output diff --git a/changelog.d/20220831_164625_sirosen_lazy_subcommands.md b/changelog.d/20220831_164625_sirosen_lazy_subcommands.md deleted file mode 100644 index 659f6f57a..000000000 --- a/changelog.d/20220831_164625_sirosen_lazy_subcommands.md +++ /dev/null @@ -1,4 +0,0 @@ -### Enhancements - -* Implement lazy subcommand loading, making many CLI usages significantly - faster. Speed improvements are as dramatic as 2x for some commands. diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index 05364ff2b..5cd7ba66e 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.7.0" +__version__ = "3.8.0" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"