Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: v0.6.1 Pull Request #317

Merged
merged 1 commit into from
Aug 27, 2024
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
31 changes: 19 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -103,23 +110,23 @@

- - -

## 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
- **(action)** bump version to 0.3.2 - (4cac34c) - AtomicFS

- - -

## v0.3.1 - 2024-08-26
## v0.3.1 - 2024-08-27
#### Bug Fixes
- **(again)** build docker containers on release - (2d33a7e) - AtomicFS
#### Miscellaneous Chores
- **(action)** bump version to 0.3.1 - (ca343ff) - AtomicFS

- - -

## v0.3.0 - 2024-08-26
## v0.3.0 - 2024-08-27
#### Bug Fixes
- **(megalinter)** fix spelling - (99a6247) - AtomicFS
- **(typo)** typo - (a5d9fb5) - AtomicFS
Expand All @@ -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
Expand Down Expand Up @@ -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]
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
version: '3'
vars:
SEMVER: 'v0.6.0'
SEMVER: 'v0.6.1'

tasks:
build-go-binary:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion action/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading