diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fabba002..cba8ddc9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +# Version 3.63.0 (2024-02-19) +## Added +* Ability for users to install and use sdk with pydantic v.2.* while still maintaining support for pydantic v1.* +* `ModelRun` `export()` and `export_v2()` add model_run_details to support splits # Version 3.62.0 (2024-02-12) ## Added diff --git a/docs/source/conf.py b/docs/source/conf.py index 74a519b38..e140d04af 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ copyright = '2021, Labelbox' author = 'Labelbox' -release = '3.62.0' +release = '3.63.0' # -- General configuration --------------------------------------------------- diff --git a/labelbox/__init__.py b/labelbox/__init__.py index 33446cdf7..dad39dcd9 100644 --- a/labelbox/__init__.py +++ b/labelbox/__init__.py @@ -1,6 +1,6 @@ name = "labelbox" -__version__ = "3.62.0" +__version__ = "3.63.0" from labelbox.client import Client from labelbox.schema.project import Project