Skip to content

Commit 45109d8

Browse files
authored
Prep 4.0.0 (#1802)
1 parent 86178a4 commit 45109d8

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

Diff for: docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
project = 'Python SDK reference'
1717
copyright = '2024, Labelbox'
1818
author = 'Labelbox'
19-
release = '3.78.0'
19+
release = '4.0.0'
2020

2121
# -- General configuration ---------------------------------------------------
2222

Diff for: libs/labelbox/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
# Changelog
2+
# Version 4.0.0 (2024-09-10)
3+
## Added
4+
* BREAKING CHANGE for pydantic V1 users: Converted SDK to use pydantic V2([#1738](https://github.com/Labelbox/labelbox-python/pull/1738))
5+
* Automation test support for multiple sdk versions([#1792](https://github.com/Labelbox/labelbox-python/pull/1792))
6+
## Fixed
7+
* Flaky tests([#1793](https://github.com/Labelbox/labelbox-python/pull/1793))
8+
9+
# Version 3.78.1 (2024-09-10)
10+
## Fixed
11+
* Labeling dashboard query for tags
12+
213
# Version 3.78.0 (2024-09-03)
314
## Added
415
* Project get_labeling_service_dashboard() aka project detail (Miltiple PRs)

Diff for: libs/labelbox/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "labelbox"
3-
version = "3.78.0"
3+
version = "4.0.0"
44
description = "Labelbox Python API"
55
authors = [{ name = "Labelbox", email = "[email protected]" }]
66
dependencies = [

Diff for: libs/labelbox/src/labelbox/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "labelbox"
22

3-
__version__ = "3.78.0"
3+
__version__ = "4.0.0"
44

55
from labelbox.client import Client
66
from labelbox.schema.project import Project

Diff for: libs/labelbox/src/labelbox/schema/labeling_service_dashboard.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@
2828
tasksRemainingCount
2929
mediaType
3030
editorTaskType
31-
tags
31+
tags {
32+
id
33+
text
34+
color
35+
type
36+
}
3237
"""
3338

3439

0 commit comments

Comments
 (0)