From 626b9ce8d49fe9531d0a26c4ec7fb7716224174f Mon Sep 17 00:00:00 2001 From: Steve Canny Date: Sat, 7 Dec 2024 11:24:46 -0800 Subject: [PATCH] chore: bump CHANGELOG + __version__ --- CHANGELOG.md | 10 ++++++++++ unstructured/__version__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57bc860572..ce7f3d66e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.16.11-dev0 + +### Enhancements + +- **Relax table segregation rule in chunking.** Previously a `Table` element was always segregated into its own pre-chunk such that the `Table` appeared alone in a chunk or was split into multiple `TableChunk` elements, but never combined with `Text`-subtype elements. Allow table elements to be combined with other elements in the same chunk when space allows. + +### Features + +### Fixes + ## 0.16.10 ### Enhancements diff --git a/unstructured/__version__.py b/unstructured/__version__.py index ce448b0919..345a270515 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.16.10" # pragma: no cover +__version__ = "0.16.11-dov0" # pragma: no cover