Skip to content

Release prep PR #1750

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 1 commit into from
Jul 29, 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.75.1'
release = '3.76.0'

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

Expand Down
17 changes: 17 additions & 0 deletions libs/labelbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
# Changelog
# Version 3.76.0 (2024-07-29)
# Added
* Added Project get_labeling_service(), request_labeling_service() and get_labeling_service_status()
* 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
* Added is_benchmark_enabled, is_consensus_enabled to Project in https://github.com/Labelbox/labelbox-python/pull/1745

## Updated
* 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

## Notebooks
* Added back in export migration guide in https://github.com/Labelbox/labelbox-python/pull/1736
* Added correct data param to video notebookin https://github.com/Labelbox/labelbox-python/pull/1732
NOTE: the notebooks will be removed and moved to this repo https://github.com/Labelbox/labelbox-notebooks soon

## Other
* Use connection pool for all http and graphql requests in https://github.com/Labelbox/labelbox-python/pull/1733

# Version 3.75.1 (2024-07-16)
## Removed
* Project MEDIA_TYPE JSON https://github.com/Labelbox/labelbox-python/pull/1728
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.75.1"
version = "3.76.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.75.1"
__version__ = "3.76.0"

from labelbox.client import Client
from labelbox.schema.project import Project
Expand Down
Loading