From ec1b0f763506a85feed4b1089f330a623db3f8d2 Mon Sep 17 00:00:00 2001 From: theborch Date: Fri, 28 Feb 2025 11:05:56 -0600 Subject: [PATCH 1/2] fix:getopt typo --- src/pybritive/helpers/aws_credential_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybritive/helpers/aws_credential_process.py b/src/pybritive/helpers/aws_credential_process.py index 389930a..7262205 100644 --- a/src/pybritive/helpers/aws_credential_process.py +++ b/src/pybritive/helpers/aws_credential_process.py @@ -120,7 +120,7 @@ def get_args(): options = getopt( argv[1:], 't:T:p:f:P:F:hv', - ['tenant=', 'token=', 'passphrase=', 'force-renew=', 'profile=', 'federation-provider=help', 'version'], + ['tenant=', 'token=', 'passphrase=', 'force-renew=', 'profile=', 'federation-provider=', 'help', 'version'], )[0] args = { From b84ddcdbe2140ec15eaa37b983f3a900eaa9b870 Mon Sep 17 00:00:00 2001 From: theborch Date: Fri, 28 Feb 2025 17:40:20 -0600 Subject: [PATCH 2/2] v2.1.0-rc.2 --- CHANGELOG.md | 22 ++++++++++++++++++++++ src/pybritive/__init__.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de18261..9b70419 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ > As of v1.4.0, release candidates will be published in an effort to get new features out faster while still allowing > time for full QA testing before moving the release candidate to a full release. +## v2.1.0-rc.2 [2025-02-28] + +__What's New:__ + +* None + +__Enhancements:__ + +* None + +__Bug Fixes:__ + +* `getopt` typo in `pybritive-aws-cred-process` + +__Dependencies:__ + +* None + +__Other:__ + +* None + ## v2.1.0-rc.1 [2025-02-24] __What's New:__ diff --git a/src/pybritive/__init__.py b/src/pybritive/__init__.py index dc62e33..8b91e9e 100644 --- a/src/pybritive/__init__.py +++ b/src/pybritive/__init__.py @@ -1 +1 @@ -__version__ = '2.1.0-rc.1' +__version__ = '2.1.0-rc.2'