From 9290b8436d673be1b85f22c1e0e37ef332200d8b Mon Sep 17 00:00:00 2001 From: Ben Kehoe Date: Wed, 19 Jul 2023 20:12:55 +0000 Subject: [PATCH] Release cli-v4.32 --- CHANGELOG.md | 5 +++++ cli/pyproject.toml | 2 +- cli/src/aws_sso_util/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9da8ac1..098e9dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ ## `aws-sso-util` +### CLI v4.32 +* Update to PyYAML 6.0.1 for Cython issue ([#104](https://github.com/benkehoe/aws-sso-util/issues/104) (see https://github.com/yaml/pyyaml/issues/601)). +* Update login text to match AWS CLI, provide inputs for custom login text to use `verificationUriComplete` ([#92](https://github.com/benkehoe/aws-sso-util/issues/)). +* Error handling for missing expiration in cached token. + ### CLI v4.31 * CloudFormation functionality now excludes suspended accounts from OU traversal ([#80](https://github.com/benkehoe/aws-sso-util/issues/80) via [#81](https://github.com/benkehoe/aws-sso-util/pull/81)). * Upgrade to `click` 8 ([#85](https://github.com/benkehoe/aws-sso-util/issues/85)). diff --git a/cli/pyproject.toml b/cli/pyproject.toml index 2a699e3..a508fa3 100644 --- a/cli/pyproject.toml +++ b/cli/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aws-sso-util" -version = "4.31.0" # change in aws_sso_util/__init__.py too +version = "4.32.0" # change in aws_sso_util/__init__.py too description = "Utilities to make AWS SSO easier" authors = ["Ben Kehoe "] license = "Apache-2.0" diff --git a/cli/src/aws_sso_util/__init__.py b/cli/src/aws_sso_util/__init__.py index 57f877f..66e9ffd 100644 --- a/cli/src/aws_sso_util/__init__.py +++ b/cli/src/aws_sso_util/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '4.31.0' # change in pyproject.toml too +__version__ = '4.32.0' # change in pyproject.toml too