From 14eca25ca9158da453a9396f2e657af180736e03 Mon Sep 17 00:00:00 2001 From: Adrian Chang Date: Wed, 10 Jul 2024 15:40:37 -0700 Subject: [PATCH 1/3] Prep release --- docs/conf.py | 2 +- libs/labelbox/CHANGELOG.md | 24 ++++++++++++++++++++++++ libs/labelbox/pyproject.toml | 2 +- libs/labelbox/src/labelbox/__init__.py | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 57958bbc7..b862846c8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ project = 'Python SDK reference' copyright = '2024, Labelbox' author = 'Labelbox' -release = '3.74.0' +release = '3.75.0' # -- General configuration --------------------------------------------------- diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index cb48ac5ee..8bc9ce68f 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -1,4 +1,28 @@ # Changelog +# Version 3.75.0 (2024-07-10) + +## What's Changed +* [PLT-0] Predictions missing by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1695 +* Use correct project type in tests/integration/test_project_model_config.py by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1697 +* [PLT-1151] Vb/model setup complete by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1685 +* [PLT-1205] Add user group management by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1604 +* [PLT-1205] Fix integration tests by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1698 +* [PTDT-2410] Prevent adding batches to live chat evaluation projects by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1703 +* Refactor Dataset create_data_rows_sync to use upsert by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1694 +* [PLT-1231] Add missing media types by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1705 +* Add upload_type to Project by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1707 +* [PLT-1207] Added prompt classification for python object support by @Gabefire in https://github.com/Labelbox/labelbox-python/pull/1700 +* [PLT-1201] Deprecate Project setup_editor and add Project connect_ontology by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1713 +* Bump dateutil max version by @colonelpanic8 in https://github.com/Labelbox/labelbox-python/pull/1716 +* [PLT-0] Bump rye by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1719 +* [PLT-1135] Alias these commands to each other so users don't have to remember which one is valid. by @sfendell-labelbox in https://github.com/Labelbox/labelbox-python/pull/1675 +* Vb/fix create ontology for project setup by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1722 + +## New Contributors +* @colonelpanic8 made their first contribution in https://github.com/Labelbox/labelbox-python/pull/1716 + +**Full Changelog**: https://github.com/Labelbox/labelbox-python/compare/v.3.74.0...v.3.75.0 + # Version 3.74.0 (2024-06-24) ## Added * Include predictions in export (#1689) diff --git a/libs/labelbox/pyproject.toml b/libs/labelbox/pyproject.toml index 86af2db1c..245402bca 100644 --- a/libs/labelbox/pyproject.toml +++ b/libs/labelbox/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "labelbox" -version = "3.74.0" +version = "3.75.0" description = "Labelbox Python API" authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }] dependencies = [ diff --git a/libs/labelbox/src/labelbox/__init__.py b/libs/labelbox/src/labelbox/__init__.py index 4cd3b4390..ff40e9e3c 100644 --- a/libs/labelbox/src/labelbox/__init__.py +++ b/libs/labelbox/src/labelbox/__init__.py @@ -1,6 +1,6 @@ name = "labelbox" -__version__ = "3.74.0" +__version__ = "3.75.0" from labelbox.client import Client from labelbox.schema.project import Project From 4fa28cf68d6bcc2a52092c253aea3a3a26e41ba2 Mon Sep 17 00:00:00 2001 From: Adrian Chang Date: Wed, 10 Jul 2024 16:38:09 -0700 Subject: [PATCH 2/3] Update release notes --- libs/labelbox/CHANGELOG.md | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index 8bc9ce68f..d1ec4550c 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -1,22 +1,21 @@ # Changelog # Version 3.75.0 (2024-07-10) - -## What's Changed -* [PLT-0] Predictions missing by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1695 -* Use correct project type in tests/integration/test_project_model_config.py by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1697 -* [PLT-1151] Vb/model setup complete by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1685 -* [PLT-1205] Add user group management by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1604 -* [PLT-1205] Fix integration tests by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1698 -* [PTDT-2410] Prevent adding batches to live chat evaluation projects by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1703 +## Added +* Project Model Setup by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1685 +* Add user group management by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1604 * Refactor Dataset create_data_rows_sync to use upsert by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1694 -* [PLT-1231] Add missing media types by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1705 * Add upload_type to Project by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1707 -* [PLT-1207] Added prompt classification for python object support by @Gabefire in https://github.com/Labelbox/labelbox-python/pull/1700 -* [PLT-1201] Deprecate Project setup_editor and add Project connect_ontology by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1713 +* Added prompt classification for python object support by @Gabefire in https://github.com/Labelbox/labelbox-python/pull/1700 +* Alias `wait_xxx` functions by @sfendell-labelbox in https://github.com/Labelbox/labelbox-python/pull/1675 + +## Fixed +* Predictions missing during Catalog slice Export by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1695 +* Prevent adding batches to live chat evaluation projects by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1703 +* Add missing media types by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1705 +* Deprecate Project setup_editor and add Project connect_ontology by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1713 * Bump dateutil max version by @colonelpanic8 in https://github.com/Labelbox/labelbox-python/pull/1716 -* [PLT-0] Bump rye by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1719 -* [PLT-1135] Alias these commands to each other so users don't have to remember which one is valid. by @sfendell-labelbox in https://github.com/Labelbox/labelbox-python/pull/1675 -* Vb/fix create ontology for project setup by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1722 +* Bump version rye by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1719 +* Update create ontology for project setup by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1722 ## New Contributors * @colonelpanic8 made their first contribution in https://github.com/Labelbox/labelbox-python/pull/1716 From 79cc908c3d70f2168180ab4ce1805e5d6c4c1e8d Mon Sep 17 00:00:00 2001 From: Adrian Chang Date: Wed, 10 Jul 2024 17:00:38 -0700 Subject: [PATCH 3/3] Update release notes --- libs/labelbox/CHANGELOG.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libs/labelbox/CHANGELOG.md b/libs/labelbox/CHANGELOG.md index d1ec4550c..b5607639f 100644 --- a/libs/labelbox/CHANGELOG.md +++ b/libs/labelbox/CHANGELOG.md @@ -1,21 +1,21 @@ # Changelog # Version 3.75.0 (2024-07-10) ## Added -* Project Model Setup by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1685 -* Add user group management by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1604 +* Added Project set_project_model_setup_complete() method by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1685 +* Added user group management by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1604 * Refactor Dataset create_data_rows_sync to use upsert by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1694 -* Add upload_type to Project by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1707 +* Added upload_type to Project by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1707 * Added prompt classification for python object support by @Gabefire in https://github.com/Labelbox/labelbox-python/pull/1700 * Alias `wait_xxx` functions by @sfendell-labelbox in https://github.com/Labelbox/labelbox-python/pull/1675 ## Fixed * Predictions missing during Catalog slice Export by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1695 -* Prevent adding batches to live chat evaluation projects by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1703 -* Add missing media types by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1705 +* Prevented adding batches to live chat evaluation projects by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1703 +* Added missing media types by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1705 * Deprecate Project setup_editor and add Project connect_ontology by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1713 -* Bump dateutil max version by @colonelpanic8 in https://github.com/Labelbox/labelbox-python/pull/1716 -* Bump version rye by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1719 -* Update create ontology for project setup by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1722 +* Bumped dateutil max version by @colonelpanic8 in https://github.com/Labelbox/labelbox-python/pull/1716 +* Bumped version rye by @adrian-chang in https://github.com/Labelbox/labelbox-python/pull/1719 +* Updated create ontology for project setup by @vbrodsky in https://github.com/Labelbox/labelbox-python/pull/1722 ## New Contributors * @colonelpanic8 made their first contribution in https://github.com/Labelbox/labelbox-python/pull/1716