__What's New:__
* `pybritive-aws-cred-process` - a "side-car" helper script/CLI program that provides a minimal codebase in an effort
to reduce the latency of obtaining credentials via the AWS `credential_process` command.
An example of how to use is below. Contents of `~/.aws/credentials`...
toml
[profile-a]
credential_process=pybritive-aws-cred-process --profile britive-profile-alias
region=us-east-1
Note that the following is also still acceptable.
toml
[profile-a]
credential_process=pybritive checkout britive-profile-alias -m awscredentialprocess
region=us-east-1
However, the former reduces the latency of the call by ~50% while still maintaining basic functionality.
__Enhancements:__
* Provided a `GenericCloudCredentialPrinter` class which handles printing all cloud credentials not covered by a cloud
specific credential printer.
__Bug Fixes:__
* Fixes an issue when checking in a profile due to the `--force-renew` flag being set.
__Dependencies:__
* None
__Other:__
* None