diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d6cafdb..497e0fa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## v0.11.1 - 2025-01-22 +#### Bug Fixes +- release workflow - (5e845cd) - AtomicFS + +- - - + ## v0.11.0 - 2025-01-22 #### Bug Fixes - **(action)** add coreboot blobs into GetSources - (0f0a9a6) - AtomicFS diff --git a/Taskfile.yml b/Taskfile.yml index cf54b3f3..316d18d0 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,7 +1,7 @@ --- version: '3' vars: - SEMVER: 'v0.11.0' + SEMVER: 'v0.11.1' GOLANG_CODE_PATH: 'cmd/firmware-action' includes: diff --git a/action.yml b/action.yml index 9213cbd4..a7531604 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ runs: steps: - id: version shell: bash - run: echo "version=v0.11.0" >> "${GITHUB_OUTPUT}" + run: echo "version=v0.11.1" >> "${GITHUB_OUTPUT}" - id: arch # This ARCH is used to fetch correct executable of firmware-action diff --git a/cmd/firmware-action/main.go b/cmd/firmware-action/main.go index f31e7b47..1b8374cf 100644 --- a/cmd/firmware-action/main.go +++ b/cmd/firmware-action/main.go @@ -34,7 +34,7 @@ func main() { } } -const firmwareActionVersion = "v0.11.0" +const firmwareActionVersion = "v0.11.1" // CLI (Command Line Interface) holds data from environment var CLI struct {