Skip to content

Commit 1e18e1c

Browse files
committed
Release lib-v1.10 and cli-v4.27
1 parent 7ff9928 commit 1e18e1c

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
# Changelog
22

3+
`aws-sso-util` and `aws-sso-lib` use [monotonic versioning](blog.appliedcompscilab.com/monotonic_versioning_manifesto/).
4+
35
* [`aws-sso-util`](#aws-sso-util)
46
* [`aws-sso-lib`](#aws-sso-lib)
57

68
## `aws-sso-util`
79

10+
### CLI v4.27
11+
* Added `--account-name-case` and `--role-name-case` to `aws-sso-util configure populate` ([#48](https://github.com/benkehoe/aws-sso-util/pull/48)).
12+
* `aws-sso-util check` logs version and timestamp information.
13+
* Fixed bug in `aws-sso-util configure profile` with Python 3.6
14+
815
### CLI v4.26
916
* Add `aws-sso-util run-as` command ([#44](https://github.com/benkehoe/aws-sso-util/pull/44)). Read the docs [here](docs/run-as.md).
1017
* Add `aws-sso-util console` commands ([#47](https://github.com/benkehoe/aws-sso-util/pull/47)). Read the docs [here](docs/console.md).
@@ -35,6 +42,9 @@
3542

3643
## `aws-sso-lib`
3744

45+
### lib v1.10
46+
* `lookup_accounts_for_ou()` now caches calls to `organizations.DescribeOrganization`.
47+
3848
### lib v1.9
3949
* `get_boto3_session()` now ignores `AWS_PROFILE` and `AWS_DEFAULT_PROFILE` environment variables.
4050
* Add `find_all_instances()` function to `config` package.

cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-sso-util"
3-
version = "4.26.0" # change in aws_sso_util/__init__.py too
3+
version = "4.27.0" # change in aws_sso_util/__init__.py too
44
description = "Utilities to make AWS SSO easier"
55
authors = ["Ben Kehoe <ben@kehoe.io>"]
66
license = "Apache-2.0"

cli/src/aws_sso_util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.26.0' # change in pyproject.toml too
1+
__version__ = '4.27.0' # change in pyproject.toml too

lib/aws_sso_lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.9.0' # change in pyproject.toml too
1+
__version__ = '1.10.0' # change in pyproject.toml too
22

33
from .sso import get_boto3_session, login, list_available_accounts, list_available_roles
44
from .assignments import Assignment, list_assignments

lib/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-sso-lib"
3-
version = "1.9.0" # change in aws_sso_lib/__init__.py too
3+
version = "1.10.0" # change in aws_sso_lib/__init__.py too
44
description = "Library to make AWS SSO easier"
55
authors = ["Ben Kehoe <ben@kehoe.io>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)