diff --git a/CHANGELOG.md b/CHANGELOG.md index c9a74c8b43..3574566486 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.15.10-dev4 +## 0.15.10 ### Enhancements diff --git a/Dockerfile b/Dockerfile index 1745284a2c..4f4d3667ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,17 @@ COPY unstructured unstructured COPY test_unstructured test_unstructured COPY example-docs example-docs +# NOTE(robinson) - temporary workaround to install mesa-gl 24.1.0 because +# libgallum is missing in mesa-gl 24.2.0 from the wolfi package manager +RUN wget "https://utic-public-cf.s3.amazonaws.com/mesa-gl-24.1.0-r0.718c913d.apk" && \ + wget "https://utic-public-cf.s3.amazonaws.com/mesa-glapi-24.1.0-r0.4390a503.apk" && \ + apk del mesa-gl && \ + apk add --allow-untrusted mesa-gl-24.1.0-r0.718c913d.apk && \ + apk add --allow-untrusted mesa-glapi-24.1.0-r0.4390a503.apk && \ + rm mesa-gl-24.1.0-r0.718c913d.apk && \ + rm mesa-glapi-24.1.0-r0.4390a503.apk + + RUN chown -R notebook-user:notebook-user /app && \ apk add font-ubuntu git && \ fc-cache -fv && \ diff --git a/unstructured/__version__.py b/unstructured/__version__.py index 8c77e84be8..82a8205bda 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.15.10-dev4" # pragma: no cover +__version__ = "0.15.10" # pragma: no cover