Skip to content

Commit ce7a51a

Browse files
authored
Merge pull request #343 from Labelbox/develop
3.9.0
2 parents fb25784 + 62aff30 commit ce7a51a

File tree

28 files changed

+937
-595
lines changed

28 files changed

+937
-595
lines changed

CHANGELOG.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,22 @@
77
| `ModelRun.annotation_groups()` | `ModelRun.model_run_data_rows()` | 3.9 |
88
| `DataRowMetadataSchema.id` | `DataRowMetadataSchema.uid` | 3.9 |
99
-----
10-
11-
# Version 3.8.0 (2021-10-21)
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
24+
25+
# Version 3.8.0 (2021-10-22)
1226
## Added
1327
* `ModelRun.upsert_data_rows()`
1428
* Add data rows to a model run without also attaching labels
@@ -25,7 +39,7 @@
2539

2640
## Fix
2741
* `DataRowMetadataField` no longer relies on pydantic for field validation and coercion
28-
* This prevents unintended type coercion from occuring
42+
* This prevents unintended type coercions from occurring
2943

3044
# Version 3.7.0 (2021-10-11)
3145
## Added

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
copyright = '2021, Labelbox'
2222
author = 'Labelbox'
2323

24-
release = '3.7.0'
24+
release = '3.8.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727

docs/source/index.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,23 @@ Enums
154154
:members:
155155
:show-inheritance:
156156

157+
ModelRun
158+
----------------------------
159+
160+
.. automodule:: labelbox.schema.model_run
161+
:members:
162+
:show-inheritance:
163+
164+
Model
165+
----------------------------
166+
167+
.. automodule:: labelbox.schema.model
168+
:members:
169+
:show-inheritance:
170+
171+
DataRowMetadata
172+
----------------------------
173+
174+
.. automodule:: labelbox.schema.data_row_metadata
175+
:members:
176+
:show-inheritance:

0 commit comments

Comments
 (0)