From 1ae334d7b432aab02e4b2a58c65ec2f7b3c3b7e4 Mon Sep 17 00:00:00 2001 From: Stephen Rosen Date: Wed, 11 Mar 2020 19:52:40 +0000 Subject: [PATCH] Release v1.12.0 --- changelog.adoc | 36 ++++++++++++++++++++++++++++++++++++ globus_cli/version.py | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/changelog.adoc b/changelog.adoc index 83fd75f75..81f0e05d9 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -1,5 +1,41 @@ = CLI Changelog +== 1.12.0 + +Bugfixes: + +* If a new `refresh_token` is issued when a token refreshes, it will be stored + correctly. + +* Paths being joined for `--batch` mode for `globus transfer` and + `globus delete` on Windows were joined incorrectly with the platform path + separator (`\`). They are now joined correctly with `/` + +Enhancements: + +* Error and hint outputs are styled using colors when the output is being + written to a terminal. + + ** Supports macOS and Linux by default using ANSI colors. + + ** You can install colorama (`pip install colorama`) in the same + environment as the CLI to get color support on Windows. + +* Endpoints whose activation requirements do not include any myproxy + requirements now give an informative error message if myproxy activation is + attempted + +* Add support for `--external-checksum` and `--checksum-algorithm` in + `globus transfer` commands + +Other: + +* Internally, use the `globus_sdk.IdentityMap` construct, not a custom mapping type. + +* Remove official support for python3.4, add support for python3.8 + +* Improvements to help text + == 1.11.0 Enhancements: diff --git a/globus_cli/version.py b/globus_cli/version.py index b7571f074..04a8f61a4 100644 --- a/globus_cli/version.py +++ b/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__ = "1.11.0" +__version__ = "1.12.0" # app name to send as part of SDK requests app_name = "Globus CLI v{}".format(__version__)