From b981d7197f06710027bf7a92446830fd917e6586 Mon Sep 17 00:00:00 2001 From: Steve Canny Date: Mon, 9 Dec 2024 15:48:00 -0800 Subject: [PATCH] release: prepare release 0.16.11 (#3819) Release only, no code changes. --- CHANGELOG.md | 2 +- unstructured/__version__.py | 2 +- unstructured/chunking/title.py | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) 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.