diff --git a/CHANGELOG.md b/CHANGELOG.md index 0794da5b..14e09379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ -## Unreleased (2b42c43..3659a03) +## Unreleased (4b9e9d4..4b9e9d4) +#### Bug Fixes +- **(action/linux)** defconfig filename - (4b9e9d4) - AtomicFS + +- - - + +## v0.6.0 - 2024-08-27 #### Bug Fixes - **(ci)** consolidate jobs - (a9e6b0d) - AtomicFS - **(dagger)** missing docker-compose - (6b41c2e) - AtomicFS @@ -14,11 +20,12 @@ - **(ci)** add reminder bot - (b3615d5) - AtomicFS - **(docker)** build coreboot cross-compilers for all platforms - (3659a03) - AtomicFS #### Miscellaneous Chores +- **(action)** bump version to v0.6.0 - (6a4f3d0) - AtomicFS - **(action)** remove unnecessary input - (2b42c43) - AtomicFS - - - -## v0.5.0 - 2024-08-26 +## v0.5.0 - 2024-08-27 #### Bug Fixes - **(action)** remove unnecessary apostrophes - (f715557) - AtomicFS - **(action)** if statement using compile input - (77403bf) - AtomicFS @@ -49,7 +56,7 @@ - - - -## v0.4.0 - 2024-08-26 +## v0.4.0 - 2024-08-27 #### Bug Fixes - **(action)** broken InputDirs - (4ae3cba) - AtomicFS - **(action)** simplify u-root test - (ed3f45c) - AtomicFS @@ -103,7 +110,7 @@ - - - -## v0.3.2 - 2024-08-26 +## v0.3.2 - 2024-08-27 #### Features - **(action)** allow multi-module workspaces for u-root - (f54803d) - AtomicFS #### Miscellaneous Chores @@ -111,7 +118,7 @@ - - - -## v0.3.1 - 2024-08-26 +## v0.3.1 - 2024-08-27 #### Bug Fixes - **(again)** build docker containers on release - (2d33a7e) - AtomicFS #### Miscellaneous Chores @@ -119,7 +126,7 @@ - - - -## v0.3.0 - 2024-08-26 +## v0.3.0 - 2024-08-27 #### Bug Fixes - **(megalinter)** fix spelling - (99a6247) - AtomicFS - **(typo)** typo - (a5d9fb5) - AtomicFS @@ -145,7 +152,7 @@ - - - -## v0.2.1 - 2024-08-26 +## v0.2.1 - 2024-08-27 #### Bug Fixes - **(action)** fix issue 195 - (d8bc51a) - AtomicFS - **(action)** fix bin filename in Taskfile.yml - (5b20be4) - AtomicFS @@ -227,7 +234,7 @@ - - - -## v0.2.0 - 2024-08-26 +## v0.2.0 - 2024-08-27 #### Build system - **(deps)** bump the golang group in /action with 1 update - (d7e9dc8) - dependabot[bot] - **(deps)** update pytest-timeout requirement in /.dagger-ci/daggerci - (11045e2) - dependabot[bot] @@ -242,7 +249,7 @@ - - - -## v0.1.2 - 2024-08-26 +## v0.1.2 - 2024-08-27 #### Bug Fixes - **(commitlint)** add config increasing max line length - (38a005e) - AtomicFS - **(docker)** edk2 repositories were missing files - (4cf4603) - AtomicFS @@ -292,13 +299,13 @@ - - - -## v0.1.1 - 2024-08-26 +## v0.1.1 - 2024-08-27 #### Bug Fixes - **(action)** naming mistake in JSON config - (58ebf67) - AtomicFS - - - -## v0.1.0 - 2024-08-26 +## v0.1.0 - 2024-08-27 #### Bug Fixes - **(docker)** add cleanup commands - (b26acf4) - AtomicFS - guard queue with mutex in recipes.go - (b160e01) - Marvin Drees @@ -320,7 +327,7 @@ - - - -## v0.0.1 - 2024-08-26 +## v0.0.1 - 2024-08-27 #### Bug Fixes - **(Dockerfile)** add --no-cache-dir - (c116873) - Patrick Rudolph - **(Dockerfile)** add user to fix linter - (ebca447) - Patrick Rudolph diff --git a/Taskfile.yml b/Taskfile.yml index 78654176..41526a53 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,7 +1,7 @@ --- version: '3' vars: - SEMVER: 'v0.6.0' + SEMVER: 'v0.6.1' tasks: build-go-binary: diff --git a/action.yml b/action.yml index c116c493..4060f7bc 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ runs: steps: - id: version shell: bash - run: echo "version=v0.6.0" >> "${GITHUB_OUTPUT}" + run: echo "version=v0.6.1" >> "${GITHUB_OUTPUT}" - id: arch shell: bash diff --git a/action/main.go b/action/main.go index 22557951..9fc43b30 100644 --- a/action/main.go +++ b/action/main.go @@ -33,7 +33,7 @@ func main() { } } -const firmwareActionVersion = "v0.6.0" +const firmwareActionVersion = "v0.6.1" // CLI (Command Line Interface) holds data from environment var CLI struct {