diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dc123f29..00a629b5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Changelog -# Version X.XX.X (Unreleased) +# Version 3.33.0 (2022-12-13) ### Added * Added SDK support for creating batches with up to 100k data rows +* Added optional media_type to `client.create_ontology_from_feature_schemas()` and `client.create_ontology()` + +### Changed +* String representation of `DbObject` subclasses are now formatted # Version 3.32.0 (2022-12-02) ### Added diff --git a/docs/source/conf.py b/docs/source/conf.py index c9738b164..a6c4d53ae 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ copyright = '2021, Labelbox' author = 'Labelbox' -release = '3.32.0' +release = '3.33.0' # -- General configuration --------------------------------------------------- diff --git a/labelbox/__init__.py b/labelbox/__init__.py index 163051d31..a89266758 100644 --- a/labelbox/__init__.py +++ b/labelbox/__init__.py @@ -1,5 +1,5 @@ name = "labelbox" -__version__ = "3.32.0" +__version__ = "3.33.0" from labelbox.client import Client from labelbox.schema.project import Project