diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d16c6f0d5..a85ee67ba7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ -## 0.15.0-dev8 +## 0.15.0-dev9 ### Enhancements -* **Bump unstructured.paddleocr to 2.8.0.** +* **Bump unstructured.paddleocr to 2.8.0.1.** * **Refine HTML parser to accommodate block element nested in phrasing.** HTML parser no longer raises on a block element (e.g. `

`, `

`) nested inside a phrasing element (e.g. `` or ``). Instead it breaks the phrasing run (and therefore element) at the block-item start and begins a new phrasing run after the block-item. This is consistent with how the browser determines element boundaries in this situation. * **Install rewritten HTML parser to fix 12 existing bugs and provide headroom for refinement and growth.** A rewritten HTML parser resolves a collection of outstanding bugs with HTML partitioning and provides a firm foundation for further elaborating that important partitioner. diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 532e7d5863..bf83a40c32 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.15.0-dev8" # pragma: no cover +__version__ = "0.15.0-dev9" # pragma: no cover