Skip to content

2.5.1 #122

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 4 commits into from
Mar 15, 2021
Merged

2.5.1 #122

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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Version 2.5.0 (2021-03-15)
## Version 2.5.1 (2021-03-15)
### Fix
* `Dataset.data_row_for_external_id` No longer throws `ResourceNotFoundError` when there are duplicates
* Improved doc strings
Expand Down
1 change: 1 addition & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#
import os
import sys

sys.path.insert(0, os.path.abspath('../..'))

# -- Project information -----------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "labelbox"
__version__ = "2.5.0"
__version__ = "2.5.1"

from labelbox.client import Client
from labelbox.schema.bulk_import_request import BulkImportRequest
Expand Down
3 changes: 1 addition & 2 deletions labelbox/schema/webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ def update(self, topics=None, url=None, status=None):
topics (Optional[List[Topic]]): The new topics.
url Optional[str): The new URL value.
status (Optional[Status]): The new status.

If values are set to None then there are no updates made to that field.
If an argument is set to None then no updates will be made to that field.

"""

Expand Down