diff --git a/CHANGELOG.md b/CHANGELOG.md index 955a0d4ce8..46d75bea05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.16.11-dev1 +## 0.16.11 ### Fixes diff --git a/unstructured/__version__.py b/unstructured/__version__.py index d2557b8499..2493d925be 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.16.11-dev1" # pragma: no cover +__version__ = "0.16.11" # pragma: no cover diff --git a/unstructured/chunking/title.py b/unstructured/chunking/title.py index 878302301e..53b50b5655 100644 --- a/unstructured/chunking/title.py +++ b/unstructured/chunking/title.py @@ -129,8 +129,6 @@ def iter_boundary_predicates() -> Iterator[BoundaryPredicate]: def combine_text_under_n_chars(self) -> int: """Combine consecutive text pre-chunks if former is smaller than this and both will fit. - - Does not combine table chunks with text chunks even if they would both fit in the - chunking window. - Does not combine text chunks if together they would exceed the chunking window. - Defaults to `max_characters` when not specified. - Is reduced to `new_after_n_chars` when it exceeds that value.