Skip to content

Commit

Permalink
bump changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rbiseck3 committed Dec 13, 2024
1 parent 67e084d commit 3a0eda3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## 0.3.9-dev0
## 0.3.9-dev1

### Enhancements

* **Support ndjson files in stagers**
* **Support more concrete FileData content for batch support**


## 0.3.8
Expand Down
2 changes: 1 addition & 1 deletion unstructured_ingest/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.9-dev0" # pragma: no cover
__version__ = "0.3.9-dev1" # pragma: no cover
2 changes: 1 addition & 1 deletion unstructured_ingest/v2/interfaces/file_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class BatchFileData(FileData):

@field_validator("batch_items")
@classmethod
def check_uniqueness(cls, v: list[BatchItem]) -> list[BatchItem]:
def check_batch_items(cls, v: list[BatchItem]) -> list[BatchItem]:
if not v:
raise ValueError("batch items cannot be empty")
all_identifiers = [item.identifier for item in v]
Expand Down

0 comments on commit 3a0eda3

Please sign in to comment.