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)