diff --git a/changelog.adoc b/changelog.adoc index 13319aced..929ad5edc 100644 --- a/changelog.adoc +++ b/changelog.adoc @@ -2,6 +2,14 @@ // scriv-insert-here +== 3.28.3 (2024-06-14) + +Bugfixes: + +* Fix a bug which would break rendering if a user created a timer with no end. + +* Resolve a `KeyError` that can happen if scope resolution fails during flow validation. + == 3.28.2 (2024-05-02) Bugfixes: diff --git a/changelog.d/20240513_143239_derek_timer_schedule_null_check.md b/changelog.d/20240513_143239_derek_timer_schedule_null_check.md deleted file mode 100644 index 764f23d98..000000000 --- a/changelog.d/20240513_143239_derek_timer_schedule_null_check.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bugfixes - -* Fixed a bug which would break rendering if a user created a timer with no end. diff --git a/changelog.d/20240514_150809_kurtmckee_resolve_message_key_error_sc_33613.md b/changelog.d/20240514_150809_kurtmckee_resolve_message_key_error_sc_33613.md deleted file mode 100644 index f41504fff..000000000 --- a/changelog.d/20240514_150809_kurtmckee_resolve_message_key_error_sc_33613.md +++ /dev/null @@ -1,3 +0,0 @@ -### Bugfixes - -* Resolve a `KeyError` that can happen if scope resolution fails during flow validation. diff --git a/src/globus_cli/version.py b/src/globus_cli/version.py index 3d71b1551..cf111069d 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.2" +__version__ = "3.28.3" # app name to send as part of SDK requests app_name = f"Globus CLI v{__version__}"