From e48b14330c8753ad2feb2ea32134105e1850bb52 Mon Sep 17 00:00:00 2001 From: Benjamin Torres Date: Fri, 6 Oct 2023 15:19:33 -0600 Subject: [PATCH] CHANGELOG update --- CHANGELOG.md | 5 +++-- unstructured/__version__.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98566c7786..c1815be041 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.10.20-dev4 +## 0.10.20-dev5 ### Enhancements @@ -20,7 +20,8 @@ setting UNSTRUCTURED_INCLUDE_DEBUG_METADATA=true is needed. * **Fixes badly initialized Formula** Problem: YoloX contain new types of elements, when loading a document that contain formulas a new element of that class should be generated, however the Formula class inherits from Element instead of Text. After this change the element is correctly created with the correct class allowing the document to be loaded. Fix: Change parent class for Formula to Text. Importance: Crucial to be able to load documents that contain formulas. - +* **bumps unstructured-inference==0.7.1** This version of `unstructured-inference` download yolox already quantized from Hugging Face, avoiding some issues with newer versions +of onnxruntime. Also, onnxruntime is pinned to <1.16 where this issues were found. ## 0.10.19 ### Enhancements diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 085ba4d4be..adcfc625cb 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.10.20-dev4" # pragma: no cover +__version__ = "0.10.20-dev5" # pragma: no cover