Skip to content

Commit 463af78

Browse files
committed
Release lib-v1.12 and cli-v4.29
1 parent bac5855 commit 463af78

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
## `aws-sso-util`
99

10+
### CLI v4.29
11+
* Remove support for Python 3.6 (removed in `boto3`).
12+
* Fix `aws-sso-credential-process` for `botocore` change.
13+
1014
### CLI v4.28
1115
* Log normal output to stdout ([#54](https://github.com/benkehoe/aws-sso-util/issues/54)).
1216
* Fix short region names for GovCloud in `aws-sso-util configure populate` and `aws-sso-util configure profile` ([#55](https://github.com/benkehoe/aws-sso-util/issues/55)).
@@ -48,6 +52,10 @@
4852

4953
## `aws-sso-lib`
5054

55+
### lib v1.12
56+
* Remove support for Python 3.6 (removed in `boto3`).
57+
* Fix `get_credentials()` for `botocore` change.
58+
5159
### lib v1.11
5260
* Improvements to `SSOTokenFetcher` to support better `aws-sso-util check` functionality.
5361
* Fixed type annotations.

cli/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-sso-util"
3-
version = "4.28.0" # change in aws_sso_util/__init__.py too
3+
version = "4.29.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"
@@ -28,7 +28,7 @@ pyyaml = "^5.3.1"
2828
jsonschema = "^3.2.0"
2929
aws-error-utils = "^1.0.4"
3030
python-dateutil = "^2.8.1"
31-
aws-sso-lib = "^1.11.0"
31+
aws-sso-lib = "^1.12.0"
3232
# aws-sso-lib = { path = "../lib" }
3333
requests = "^2.26.0"
3434

cli/src/aws_sso_util/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '4.28.0' # change in pyproject.toml too
15+
__version__ = '4.29.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
@@ -11,7 +11,7 @@
1111
# ANY KIND, either express or implied. See the License for the specific
1212
# language governing permissions and limitations under the License.
1313

14-
__version__ = '1.11.0' # change in pyproject.toml too
14+
__version__ = '1.12.0' # change in pyproject.toml too
1515

1616
from .sso import get_boto3_session, login, list_available_accounts, list_available_roles
1717
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.11.0" # change in aws_sso_lib/__init__.py too
3+
version = "1.12.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)