Skip to content

Commit 62aff30

Browse files
authored
Merge pull request #342 from Labelbox/ms/3.9-release
prep for release
2 parents 2a97fa6 + b0723e7 commit 62aff30

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@
77
| `ModelRun.annotation_groups()` | `ModelRun.model_run_data_rows()` | 3.9 |
88
| `DataRowMetadataSchema.id` | `DataRowMetadataSchema.uid` | 3.9 |
99
-----
10+
# Version 3.9.0 (2021-11-12)
11+
## Added
12+
* New ontology management features
13+
* Query for ontologies by name with `client.get_ontologies()` or by id using `client.get_ontology()`
14+
* Query for feature schemas by name with `client.get_feature_schemas()` or id using `client.get_feature_schema()`
15+
* Create feature schemas with `client.create_feature_schemas()`
16+
* Create ontologies from normalized ontology data with `client.create_ontology()`
17+
* Create ontologies from feature schemas with `client.create_ontology_from_feature_schemas()`
18+
* Set up a project from an existing ontology with `project.setup_edior()`
19+
* Added new `FeatureSchema` entity
20+
* Add support for new queue modes
21+
* Send batches of data direction to a project with `project.queue()`
22+
* Remove items from the queue with `project.dequeue()`
23+
* Query for and toggle the queue mode
1024

1125
# Version 3.8.0 (2021-10-22)
1226
## Added

labelbox/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "3.8.0"
2+
__version__ = "3.9.0"
33

44
from labelbox.schema.project import Project
55
from labelbox.client import Client
@@ -16,7 +16,7 @@
1616
from labelbox.schema.labeling_frontend import LabelingFrontend
1717
from labelbox.schema.asset_attachment import AssetAttachment
1818
from labelbox.schema.webhook import Webhook
19-
from labelbox.schema.ontology import Ontology, OntologyBuilder, Classification, Option, Tool
19+
from labelbox.schema.ontology import Ontology, OntologyBuilder, Classification, Option, Tool, FeatureSchema
2020
from labelbox.schema.role import Role, ProjectRole
2121
from labelbox.schema.invite import Invite, InviteLimit
2222
from labelbox.schema.data_row_metadata import DataRowMetadataOntology

0 commit comments

Comments
 (0)