Skip to content

Commit 2ea8d06

Browse files
authored
Merge pull request #183 from britive/develop
v2.1.0-rc.2
2 parents 07d85d2 + 685eb69 commit 2ea8d06

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
33
> As of v1.4.0, release candidates will be published in an effort to get new features out faster while still allowing
44
> time for full QA testing before moving the release candidate to a full release.
55
6+
## v2.1.0-rc.2 [2025-02-28]
7+
8+
__What's New:__
9+
10+
* None
11+
12+
__Enhancements:__
13+
14+
* None
15+
16+
__Bug Fixes:__
17+
18+
* `getopt` typo in `pybritive-aws-cred-process`
19+
20+
__Dependencies:__
21+
22+
* None
23+
24+
__Other:__
25+
26+
* None
27+
628
## v2.1.0-rc.1 [2025-02-24]
729

830
__What's New:__

src/pybritive/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.0-rc.1'
1+
__version__ = '2.1.0-rc.2'

src/pybritive/helpers/aws_credential_process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def get_args():
120120
options = getopt(
121121
argv[1:],
122122
't:T:p:f:P:F:hv',
123-
['tenant=', 'token=', 'passphrase=', 'force-renew=', 'profile=', 'federation-provider=help', 'version'],
123+
['tenant=', 'token=', 'passphrase=', 'force-renew=', 'profile=', 'federation-provider=', 'help', 'version'],
124124
)[0]
125125

126126
args = {

0 commit comments

Comments
 (0)