Skip to content

Commit

Permalink
[release] Release version 2.8.0
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Brown <[email protected]>
  • Loading branch information
mcb30 committed May 2, 2024
1 parent ba55331 commit fdbe965
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ jobs:
- name: Check binary versions
run: |
file wimboot | grep "version ${TAG},"
file src/wimboot.i386 | grep "version ${TAG},"
file src/wimboot.x86_64 | grep "version ${TAG},"
grep --binary "wimboot ${TAG} --" wimboot
grep --binary "wimboot ${TAG} --" src/wimboot.i386
grep --binary "wimboot ${TAG} --" src/wimboot.x86_64
grep --binary "wimboot ${TAG} --" src/wimboot.arm64
- name: Extract changes
run: |
Expand All @@ -46,6 +47,7 @@ jobs:
run: |
BIN=${DOWNLOAD}/${TAG}/wimboot
BIN_I386=${DOWNLOAD}/${TAG}/wimboot.i386
BIN_ARM64=${DOWNLOAD}/${TAG}/wimboot.arm64
cat > NOTES.md <<EOF
Downloads
=========
Expand All @@ -55,6 +57,7 @@ jobs:
- [wimboot](${BIN}) (for BIOS and 64-bit UEFI systems)
- [wimboot.i386](${BIN_I386}) (for BIOS and 32-bit UEFI systems)
- [wimboot.arm64](${BIN_ARM64}) (for AArch64 UEFI systems)
Source code
-----------
Expand All @@ -74,4 +77,4 @@ jobs:
run: |
gh release create ${TAG} --verify-tag --prerelease \
--title "${TAG} (${DATE})" --notes-file NOTES.md \
wimboot src/wimboot.i386
wimboot src/wimboot.i386 src/wimboot.arm64
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${TAG} --clobber wimboot src/wimboot.i386
gh release upload ${TAG} --clobber \
wimboot src/wimboot.i386 src/wimboot.arm64
- name: Clear prerelease flag
env:
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,18 @@ Changelog

## [Unreleased]

- Add support for building as an AArch64 (ARM64) binary.
## [v2.8.0] 2024-05-02

- Add support for building as an AArch64 (ARM64) binary (sponsored by
[2Pint Software][2pint]).

- Fix forcing of text mode output when multiple displays are present.

- Add support for building with the clang compiler.

- Replace efireloc with iPXE's elf2efi tool for converting ELF
binaries to PE format.

- Update to latest EDK2 headers.

## [v2.7.6] 2023-08-16
Expand Down Expand Up @@ -234,6 +242,7 @@ Changelog


[unreleased]: https://github.com/ipxe/wimboot/commits
[v2.8.0]: https://github.com/ipxe/wimboot/releases/tag/v2.8.0
[v2.7.6]: https://github.com/ipxe/wimboot/releases/tag/v2.7.6
[v2.7.5]: https://github.com/ipxe/wimboot/releases/tag/v2.7.5
[v2.7.4]: https://github.com/ipxe/wimboot/releases/tag/v2.7.4
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Versioning information
#
VERSION := v2.7.6
VERSION := v2.8.0
SBAT_GENERATION := 1

# Abstract target-independent objects
Expand Down
Binary file added src/wimboot.arm64
Binary file not shown.
Binary file modified src/wimboot.i386
100755 → 100644
Binary file not shown.
Binary file modified src/wimboot.x86_64
100755 → 100644
Binary file not shown.
Binary file modified wimboot
100755 → 100644
Binary file not shown.

0 comments on commit fdbe965

Please sign in to comment.