From b7a0b3b717d289ab4b9c6c964111c54363ba2a8f Mon Sep 17 00:00:00 2001 From: Steve Canny Date: Fri, 13 Dec 2024 17:16:07 -0800 Subject: [PATCH] chore: bump CHANGELOG + __version__ --- CHANGELOG.md | 3 ++- unstructured/__version__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 959f6c581b..d13d859802 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.16.12-dev2 +## 0.16.12-dev3 ### Enhancements @@ -9,6 +9,7 @@ ### Fixes - **Upgrade ruff to latest.** Previously the ruff version was pinned to <0.5. Remove that pin and fix the handful of lint items that resulted. +- **CSV with asserted XLS content-type is correctly identified as CSV.** Resolves a bug where a CSV file with an asserted content-type of `application/vnd.ms-excel` was incorrectly identified as an XLS file. ## 0.16.11 diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 0dbfa1eb73..d1e3d3bd18 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.16.12-dev2" # pragma: no cover +__version__ = "0.16.12-dev3" # pragma: no cover