Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion okta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
""" # noqa: E501


__version__ = "3.4.0"
__version__ = "3.4.1"

import importlib as _importlib
import threading as _threading
Expand Down
2 changes: 1 addition & 1 deletion openapi/config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
templateDir: ./templates
outputDir: ..
packageName: okta
packageVersion: 3.4.0
packageVersion: 3.4.1
useOneOfDiscriminatorLookup: true
files:
okta/okta_configuration.mustache:
Expand Down
2 changes: 1 addition & 1 deletion openapi/templates/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "okta"
version = "3.4.0"
version = "3.4.1"
description = "Okta Admin Management"
authors = ["Okta Developer Team <devex-public@okta.com>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading