From 18d6c81c47c9ef3eab1a1875718e4f969ead4e40 Mon Sep 17 00:00:00 2001 From: Christine Straub Date: Mon, 9 Dec 2024 06:47:53 -0800 Subject: [PATCH] Update CHANGELOG.md (#3818) --- CHANGELOG.md | 12 ++++++++++-- unstructured/__version__.py | 2 +- unstructured/metrics/text_extraction.py | 1 - 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfd75988d..3bd62d017 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ -## 0.16.10-dev0 +## 0.16.11-dev0 ### Enhancements -- **Enhance quote standardization tests with additional Unicode scenarios +- **Enhance quote standardization tests** with additional Unicode scenarios + +### Features + +### Fixes + +## 0.16.10 + +### Enhancements ### Features diff --git a/unstructured/__version__.py b/unstructured/__version__.py index a5fb64149..309e1c0c3 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.16.10-dev0" # pragma: no cover +__version__ = "0.16.11-dev0" # pragma: no cover diff --git a/unstructured/metrics/text_extraction.py b/unstructured/metrics/text_extraction.py index 91c9dfdf2..715385230 100644 --- a/unstructured/metrics/text_extraction.py +++ b/unstructured/metrics/text_extraction.py @@ -223,7 +223,6 @@ def standardize_quotes(text: str) -> str: double_quote_standard = '"' single_quote_standard = "'" - # Apply double quote replacements # Apply double quote replacements for unicode_val in double_quotes.values(): unicode_char = unicode_to_char(unicode_val)