Skip to content

Commit 8fd4aaf

Browse files
committed
- Marked the release as 3.2.0 minor upgrade as it contains spec changes.
1 parent 1cdf836 commit 8fd4aaf

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Okta Python SDK Changelog
22

3-
# 3.1.1
3+
# 3.2.0
44

55
* Replaced the `flatdict` dependency to fix critical configuration delimiter collisions and empty YAML crashes ([https://github.com/okta/okta-sdk-python/issues/417](https://github.com/okta/okta-sdk-python/issues/417), [https://github.com/okta/okta-sdk-python/issues/496](https://github.com/okta/okta-sdk-python/issues/496), [https://github.com/okta/okta-sdk-python/issues/499](https://github.com/okta/okta-sdk-python/issues/499)).
66
* Implemented lazy loading for models and APIs to reduce SDK import time from 2 seconds to milliseconds (Issue #476). [https://github.com/okta/okta-sdk-python/issues/476](https://github.com/okta/okta-sdk-python/issues/476)

okta/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
""" # noqa: E501
2222

2323

24-
__version__ = "3.1.1"
24+
__version__ = "3.2.0"
2525

2626
import importlib as _importlib
2727
import threading as _threading

openapi/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
templateDir: ./templates
22
outputDir: ..
33
packageName: okta
4-
packageVersion: 3.1.1
4+
packageVersion: 3.2.0
55
useOneOfDiscriminatorLookup: true
66
files:
77
okta/okta_configuration.mustache:

openapi/templates/setup.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ setup(
7070
"Topic :: Software Development :: Libraries :: Python Modules",
7171
],
7272
name=NAME,
73-
version="3.1.1",
73+
version="3.2.0",
7474
description="Python SDK for the Okta Management API",
7575
author="Okta, Inc.",
7676
author_email="developer-community-products@okta.com",

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 = "okta"
3-
version = "3.1.1"
3+
version = "3.2.0"
44
description = "Okta Admin Management"
55
authors = ["Okta Developer Team <devex-public@okta.com>"]
66
license = "Apache-2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def get_version():
7070
"Topic :: Software Development :: Libraries :: Python Modules",
7171
],
7272
name=NAME,
73-
version="3.1.1",
73+
version="3.2.0",
7474
description="Python SDK for the Okta Management API",
7575
author="Okta, Inc.",
7676
author_email="developer-community-products@okta.com",

0 commit comments

Comments
 (0)