diff --git a/CHANGELOG.md b/CHANGELOG.md index 534cdd98..69d9c331 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Okta Python SDK Changelog +# 3.4.1 + +## Fixed +* Fixed Primitive Fallback for oneOf Deserialization in Device Assurance Model. + # 3.4.0 ## Added diff --git a/okta/__init__.py b/okta/__init__.py index d6d4582c..173c0d65 100644 --- a/okta/__init__.py +++ b/okta/__init__.py @@ -21,7 +21,7 @@ """ # noqa: E501 -__version__ = "3.4.0" +__version__ = "3.4.1" import importlib as _importlib import threading as _threading diff --git a/openapi/config.yaml b/openapi/config.yaml index 461c3b84..bbaae2d1 100644 --- a/openapi/config.yaml +++ b/openapi/config.yaml @@ -1,7 +1,7 @@ templateDir: ./templates outputDir: .. packageName: okta -packageVersion: 3.4.0 +packageVersion: 3.4.1 useOneOfDiscriminatorLookup: true files: okta/okta_configuration.mustache: diff --git a/openapi/templates/setup.mustache b/openapi/templates/setup.mustache index 794d1808..4ab77345 100644 --- a/openapi/templates/setup.mustache +++ b/openapi/templates/setup.mustache @@ -70,7 +70,7 @@ setup( "Topic :: Software Development :: Libraries :: Python Modules", ], name=NAME, - version="3.4.0", + version="3.4.1", description="Python SDK for the Okta Management API", author="Okta, Inc.", author_email="developer-community-products@okta.com", diff --git a/pyproject.toml b/pyproject.toml index 0fa7ae95..8cc994cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "okta" -version = "3.4.0" +version = "3.4.1" description = "Okta Admin Management" authors = ["Okta Developer Team "] license = "Apache-2.0" diff --git a/setup.py b/setup.py index 794d1808..4ab77345 100644 --- a/setup.py +++ b/setup.py @@ -70,7 +70,7 @@ def get_version(): "Topic :: Software Development :: Libraries :: Python Modules", ], name=NAME, - version="3.4.0", + version="3.4.1", description="Python SDK for the Okta Management API", author="Okta, Inc.", author_email="developer-community-products@okta.com",