Skip to content

Commit

Permalink
Release v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sirosen committed Mar 12, 2020
1 parent 5f8de1d commit 1ae334d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions changelog.adoc
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion globus_cli/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down

0 comments on commit 1ae334d

Please sign in to comment.