Skip to content
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@
| `ModelRun.annotation_groups()` | `ModelRun.model_run_data_rows()` | 3.9 |
| `DataRowMetadataSchema.id` | `DataRowMetadataSchema.uid` | 3.9 |
-----
# Version 3.9.0 (2021-11-12)
## Added
* New ontology management features
* Query for ontologies by name with `client.get_ontologies()` or by id using `client.get_ontology()`
* Query for feature schemas by name with `client.get_feature_schemas()` or id using `client.get_feature_schema()`
* Create feature schemas with `client.create_feature_schemas()`
* Create ontologies from normalized ontology data with `client.create_ontology()`
* Create ontologies from feature schemas with `client.create_ontology_from_feature_schemas()`
* Set up a project from an existing ontology with `project.setup_edior()`
* Added new `FeatureSchema` entity
* Add support for new queue modes
* Send batches of data direction to a project with `project.queue()`
* Remove items from the queue with `project.dequeue()`
* Query for and toggle the queue mode

# Version 3.8.0 (2021-10-22)
## Added
Expand Down
4 changes: 2 additions & 2 deletions labelbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "labelbox"
__version__ = "3.8.0"
__version__ = "3.9.0"

from labelbox.schema.project import Project
from labelbox.client import Client
Expand All @@ -16,7 +16,7 @@
from labelbox.schema.labeling_frontend import LabelingFrontend
from labelbox.schema.asset_attachment import AssetAttachment
from labelbox.schema.webhook import Webhook
from labelbox.schema.ontology import Ontology, OntologyBuilder, Classification, Option, Tool
from labelbox.schema.ontology import Ontology, OntologyBuilder, Classification, Option, Tool, FeatureSchema
from labelbox.schema.role import Role, ProjectRole
from labelbox.schema.invite import Invite, InviteLimit
from labelbox.schema.data_row_metadata import DataRowMetadataOntology
Expand Down