diff --git a/changelog.adoc b/changelog.adoc index c15316b1..13319ace 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,6 +2,12 @@ // scriv-insert-here +== 3.28.2 (2024-05-02) + +Bugfixes: + +* Fix printing of API errors which do not contain JSON data + == 3.28.1 (2024-05-02) Enhancements: diff --git a/changelog.d/20240502_155411_sirosen_handle_null_errors.md b/changelog.d/20240502_155411_sirosen_handle_null_errors.md deleted file mode 100644 index dcea8b76..00000000 --- a/changelog.d/20240502_155411_sirosen_handle_null_errors.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bugfixes - -* Fix printing of API errors which do not contain JSON data diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index cd0e7f0f..3d71b155 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.28.1" +__version__ = "3.28.2" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"