Skip to content

Commit

Permalink
build(release): version 0.15.10 (#3609)
Browse files Browse the repository at this point in the history
### Summary

Release for version `0.15.10`.
  • Loading branch information
MthwRobinson authored Sep 9, 2024
1 parent cf32672 commit dc1128c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.15.10-dev4
## 0.15.10

### Enhancements

Expand Down
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion unstructured/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.15.10-dev4" # pragma: no cover
__version__ = "0.15.10" # pragma: no cover

0 comments on commit dc1128c

Please sign in to comment.