Skip to content

Commit

Permalink
Release lib-v1.14 and cli-v4.31
Browse files Browse the repository at this point in the history
  • Loading branch information
benkehoe committed Jan 27, 2023
1 parent a06a8a8 commit de57a14
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Changelog

`aws-sso-util` and `aws-sso-lib` use [monotonic versioning](blog.appliedcompscilab.com/monotonic_versioning_manifesto/).
`aws-sso-util` and `aws-sso-lib` use [monotonic versioning](https://github.com/benkehoe/monotonic-versioning-manifesto).

* [`aws-sso-util`](#aws-sso-util)
* [`aws-sso-lib`](#aws-sso-lib)

## `aws-sso-util`

### CLI v4.31
* CloudFormation functionality now excludes suspended accounts from OU traversal ([#80](https://github.com/benkehoe/aws-sso-util/issues/80) via [#81](https://github.com/benkehoe/aws-sso-util/pull/81)).
* Upgrade to `click` 8 ([#85](https://github.com/benkehoe/aws-sso-util/issues/85)).

### CLI v4.30
* `aws-sso-util login` adds `receivedAt` time to token cache entry.
* Improved `aws-sso-util check` feedback.
Expand Down Expand Up @@ -59,6 +63,9 @@

## `aws-sso-lib`

### lib v1.14
* Add `exclude_inactive_accts` parameter to `lookup_accounts_for_ou()` ([#80](https://github.com/benkehoe/aws-sso-util/issues/80) via [#81](https://github.com/benkehoe/aws-sso-util/pull/81)).

### lib v1.13
* `login()` adds `receivedAt` timestamp to token dict.

Expand Down
2 changes: 1 addition & 1 deletion cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws-sso-util"
version = "4.30.0" # change in aws_sso_util/__init__.py too
version = "4.31.0" # change in aws_sso_util/__init__.py too
description = "Utilities to make AWS SSO easier"
authors = ["Ben Kehoe <ben@kehoe.io>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/aws_sso_util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '4.30.0' # change in pyproject.toml too
__version__ = '4.31.0' # change in pyproject.toml too
2 changes: 1 addition & 1 deletion lib/aws_sso_lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.

__version__ = '1.13.0' # change in pyproject.toml too
__version__ = '1.14.0' # change in pyproject.toml too

from .sso import get_boto3_session, login, list_available_accounts, list_available_roles
from .assignments import Assignment, list_assignments
2 changes: 1 addition & 1 deletion lib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "aws-sso-lib"
version = "1.13.0" # change in aws_sso_lib/__init__.py too
version = "1.14.0" # change in aws_sso_lib/__init__.py too
description = "Library to make AWS SSO easier"
authors = ["Ben Kehoe <ben@kehoe.io>"]
license = "Apache-2.0"
Expand Down

0 comments on commit de57a14

Please sign in to comment.