4 Commits

Author SHA1 Message Date
argoyle d1b39178a9 Merge branch 'next-release' into 'main'
chore(release): prepare for v0.3.8

See merge request unboundsoftware/pre-commit!101
2025-12-03 07:18:41 +01:00
Unbound Release 234c533ee1 chore(release): prepare for v0.3.8 2025-12-03 07:18:41 +01:00
argoyle d582c31201 Merge branch 'fix/dockerfile-add-libffi8' into 'main'
fix: add libffi8 to Dockerfile dependencies

See merge request unboundsoftware/pre-commit!100
2025-12-03 07:15:31 +01:00
argoyle c03b0c927d fix: add libffi8 to Dockerfile dependencies
Install libffi8 to ensure compatibility with Python packages.
2025-12-03 07:12:25 +01:00
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
{"version":"v0.3.7"} {"version":"v0.3.8"}
+7 -1
View File
@@ -2,7 +2,13 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.3.7] - 2025-12-02 ## [0.3.8] - 2025-12-03
### 🐛 Bug Fixes
- Add libffi8 to Dockerfile dependencies
## [0.3.7] - 2025-12-03
### ⚙️ Miscellaneous Tasks ### ⚙️ Miscellaneous Tasks
+1 -1
View File
@@ -3,7 +3,7 @@ FROM amd64/golang:1.25.5@sha256:ff44d519dbd3f622224d3433f319ae0b046abe081dda5b3d
ENV PATH=${PATH}:/root/.local/bin ENV PATH=${PATH}:/root/.local/bin
RUN apt update && \ RUN apt update && \
apt install -y python3 python3-pip ruby ruby-dev git pipx && \ apt install -y python3 python3-pip ruby ruby-dev git pipx libffi8 && \
rm -rf /var/lib/apt/lists/* && \ rm -rf /var/lib/apt/lists/* && \
go install github.com/lietu/go-pre-commit@latest && \ go install github.com/lietu/go-pre-commit@latest && \
go install golang.org/x/tools/cmd/goimports@latest && \ go install golang.org/x/tools/cmd/goimports@latest && \