From c2127c8890407c60502fe0f01110f4aab3ca54f7 Mon Sep 17 00:00:00 2001 From: Val Brodsky Date: Mon, 19 Feb 2024 11:09:44 -0800 Subject: [PATCH] Update version info and CHANGELOG for release 3.63.0 --- CHANGELOG.md | 4 ++++ docs/source/conf.py | 2 +- labelbox/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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