Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ jobs:
with:
submodules: true

# ion-c derives its version via `git describe --tags --match "v*"`. Submodule
# checkouts don't fetch tags, so without this the version macros expand to empty
# and ion_version.c fails to compile ("expected expression before ';' token").
- name: Fetch ion-c tags
run: git -C src/ion-c fetch --tags

- name: Set up QEMU for Linux Builds
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### (unreleased)
* Fix ion-c submodule missing tags (#435)

### 0.14.1 (2026-06-05)
* Fix release workflow to install test dependencies (#431)
* Fix release workflow pypy version: pypy-3.8 to pypy-3.10 (#432)
Expand Down
Loading