Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:__
Expand Down
2 changes: 1 addition & 1 deletion src/pybritive/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.0-rc.1'
__version__ = '2.1.0-rc.2'
2 changes: 1 addition & 1 deletion src/pybritive/helpers/aws_credential_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down