Skip to content

Commit 4333d94

Browse files
authored
chore: update README and version number (#143)
1 parent 14db725 commit 4333d94

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

README.md

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
[![image](https://img.shields.io/badge/OS-Mac%2C%20Windows%2C%20Linux-9cf)](https://github.com/dowjones/tokendito/)
1212
[![image](https://img.shields.io/coverallsCoverage/github/dowjones/tokendito)](https://coveralls.io/github/dowjones/tokendito) [![image](https://img.shields.io/pypi/dm/tokendito)](https://pypistats.org/packages/tokendito)
1313

14-
#
15-
16-
![image](https://raw-githubusercontent-com-gh.computerqwq.top/dowjones/tokendito/main/docs/tokendito-scaled.gif)
14+
<p>
15+
<img src="https://raw-githubusercontent-com-gh.computerqwq.top/dowjones/tokendito/main/docs/tokendito-scaled.gif">
16+
</p>
1717

1818
Use `tokendito` to generate temporary AWS credentials via Okta for
1919
programmatic authentication to AWS. Tokendito signs you into Okta and
@@ -23,8 +23,31 @@ your AWS accounts, returning
2323
tokens into your local `~/.aws/credentials` file.
2424

2525
## What's new
26-
With the release of tokendito 2.0, many changes and fixes were introduced. It is a breaking release: your configuration needs to be updated, the command line arguments have changed, and support for Python < 3.7 has been removed.
26+
See [Releases](https://github.com/dowjones/tokendito/releases) for a detailed Changelog.
27+
### Tokendito 2.2.0
28+
29+
Version 2.2.0 of Tokendito introduces the following new features:
30+
31+
- Shared HTTP Client to leverage keepalives and Python's connection pool (by @fsilvamaia)
32+
- Support for Step-Up Authorization (by @ruhulio)
33+
- Misc bug fixes
34+
35+
36+
### Tokendito 2.1.0
37+
38+
Version 2.1.0 of Tokendito introduces the following new features:
39+
40+
- IdP redirection
41+
- Docker support (by @opis-mark)
42+
- Interactive support for AWS profile names (by @opis-mark)
43+
- Docker container signing to ensure you are on a 'certified' Tokendito container
44+
- Misc bug fixes
45+
46+
47+
### Tokendito 2.0.0
48+
With the release of tokendito 2.0, many changes and fixes were introduced. **It is a breaking release**: your configuration needs to be updated, the command line arguments have changed, and support for Python < 3.7 has been removed.
2749
The following changes are part of this release:
50+
2851
- Set the config file to be platform dependent, and follow the XDG standard.
2952
- Extend configuration capabilities.
3053
- Modernize output.

tokendito/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# vim: set filetype=python ts=4 sw=4
22
# -*- coding: utf-8 -*-
33
"""Tokendito module initialization."""
4-
__version__ = "2.1.3"
4+
__version__ = "2.2.0"
55
__title__ = "tokendito"
66
__description__ = "Get AWS STS tokens from Okta SSO"
77
__long_description_content_type__ = "text/markdown"

0 commit comments

Comments
 (0)