Skip to content

Prep 4.0.0 #1802

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project = 'Python SDK reference'
copyright = '2024, Labelbox'
author = 'Labelbox'
release = '3.78.0'
release = '4.0.0'

# -- General configuration ---------------------------------------------------

Expand Down
11 changes: 11 additions & 0 deletions libs/labelbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
# Changelog
# Version 4.0.0 (2024-09-10)
## Added
* BREAKING CHANGE for pydantic V1 users: Converted SDK to use pydantic V2([#1738](https://github.com/Labelbox/labelbox-python/pull/1738))
* Automation test support for multiple sdk versions([#1792](https://github.com/Labelbox/labelbox-python/pull/1792))
## Fixed
* Flaky tests([#1793](https://github.com/Labelbox/labelbox-python/pull/1793))

# Version 3.78.1 (2024-09-10)
## Fixed
* Labeling dashboard query for tags

# Version 3.78.0 (2024-09-03)
## Added
* Project get_labeling_service_dashboard() aka project detail (Miltiple PRs)
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "labelbox"
version = "3.78.0"
version = "4.0.0"
description = "Labelbox Python API"
authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion libs/labelbox/src/labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "labelbox"

__version__ = "3.78.0"
__version__ = "4.0.0"

from labelbox.client import Client
from labelbox.schema.project import Project
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@
tasksRemainingCount
mediaType
editorTaskType
tags
tags {
id
text
color
type
}
"""


Expand Down
Loading