diff --git a/CHANGELOG.md b/CHANGELOG.md index 098e9dd..fe560ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ ## `aws-sso-util` +### CLI v4.33 +* Update to jsonschema major version 4 for issue [#117](https://github.com/benkehoe/aws-sso-util/issues/117). + ### CLI v4.32 * Update to PyYAML 6.0.1 for Cython issue ([#104](https://github.com/benkehoe/aws-sso-util/issues/104) (see https://github.com/yaml/pyyaml/issues/601)). * Update login text to match AWS CLI, provide inputs for custom login text to use `verificationUriComplete` ([#92](https://github.com/benkehoe/aws-sso-util/issues/)). diff --git a/cli/pyproject.toml b/cli/pyproject.toml index f890c7b..8b84b08 100644 --- a/cli/pyproject.toml +++ b/cli/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aws-sso-util" -version = "4.32.0" # change in aws_sso_util/__init__.py too +version = "4.33.0" # change in aws_sso_util/__init__.py too description = "Utilities to make AWS SSO easier" authors = ["Ben Kehoe "] license = "Apache-2.0" diff --git a/cli/src/aws_sso_util/__init__.py b/cli/src/aws_sso_util/__init__.py index 66e9ffd..01729f0 100644 --- a/cli/src/aws_sso_util/__init__.py +++ b/cli/src/aws_sso_util/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '4.32.0' # change in pyproject.toml too +__version__ = '4.33.0' # change in pyproject.toml too