Skip to content

Commit dc1128c

Browse files
authored
build(release): version 0.15.10 (#3609)
### Summary Release for version `0.15.10`.
1 parent cf32672 commit dc1128c

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.15.10-dev4
1+
## 0.15.10
22

33
### Enhancements
44

Diff for: Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ COPY unstructured unstructured
99
COPY test_unstructured test_unstructured
1010
COPY example-docs example-docs
1111

12+
# NOTE(robinson) - temporary workaround to install mesa-gl 24.1.0 because
13+
# libgallum is missing in mesa-gl 24.2.0 from the wolfi package manager
14+
RUN wget "https://utic-public-cf.s3.amazonaws.com/mesa-gl-24.1.0-r0.718c913d.apk" && \
15+
wget "https://utic-public-cf.s3.amazonaws.com/mesa-glapi-24.1.0-r0.4390a503.apk" && \
16+
apk del mesa-gl && \
17+
apk add --allow-untrusted mesa-gl-24.1.0-r0.718c913d.apk && \
18+
apk add --allow-untrusted mesa-glapi-24.1.0-r0.4390a503.apk && \
19+
rm mesa-gl-24.1.0-r0.718c913d.apk && \
20+
rm mesa-glapi-24.1.0-r0.4390a503.apk
21+
22+
1223
RUN chown -R notebook-user:notebook-user /app && \
1324
apk add font-ubuntu git && \
1425
fc-cache -fv && \

Diff for: unstructured/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.15.10-dev4" # pragma: no cover
1+
__version__ = "0.15.10" # pragma: no cover

0 commit comments

Comments
 (0)