Skip to content

Commit 20848c6

Browse files
authored
Release prep PR (#1750)
1 parent da8d8f3 commit 20848c6

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
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.75.1'
19+
release = '3.76.0'
2020

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

libs/labelbox/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
# Changelog
2+
# Version 3.76.0 (2024-07-29)
3+
# Added
4+
* Added Project get_labeling_service(), request_labeling_service() and get_labeling_service_status()
5+
* Added project and ontology creation for prompt response projects: Client create_prompt_response_generation_project(), create_response_creation_project() in https://github.com/Labelbox/labelbox-python/pull/1726
6+
* Added is_benchmark_enabled, is_consensus_enabled to Project in https://github.com/Labelbox/labelbox-python/pull/1745
7+
8+
## Updated
9+
* Made Project quality modes a list to allow combining more than 1 quality mode per project in https://github.com/Labelbox/labelbox-python/pull/1683
10+
11+
## Notebooks
12+
* Added back in export migration guide in https://github.com/Labelbox/labelbox-python/pull/1736
13+
* Added correct data param to video notebookin https://github.com/Labelbox/labelbox-python/pull/1732
14+
NOTE: the notebooks will be removed and moved to this repo https://github.com/Labelbox/labelbox-notebooks soon
15+
16+
## Other
17+
* Use connection pool for all http and graphql requests in https://github.com/Labelbox/labelbox-python/pull/1733
18+
219
# Version 3.75.1 (2024-07-16)
320
## Removed
421
* Project MEDIA_TYPE JSON https://github.com/Labelbox/labelbox-python/pull/1728

libs/labelbox/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "labelbox"
3-
version = "3.75.1"
3+
version = "3.76.0"
44
description = "Labelbox Python API"
55
authors = [{ name = "Labelbox", email = "engineering@labelbox.com" }]
66
dependencies = [

libs/labelbox/src/labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "labelbox"
22

3-
__version__ = "3.75.1"
3+
__version__ = "3.76.0"
44

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

0 commit comments

Comments
 (0)