From ac4bde9f01d5044c9ed828c09f045822106e7ad6 Mon Sep 17 00:00:00 2001 From: AtomicFS <30438591+AtomicFS@users.noreply.github.com> Date: Mon, 27 Jan 2025 10:53:29 +0000 Subject: [PATCH] chore(action): bump version to v0.12.0 --- CHANGELOG.md | 18 ++++++++++++++++++ Taskfile.yml | 2 +- action.yml | 2 +- cmd/firmware-action/main.go | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 497e0fa6..b4cc7ca8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## v0.12.0 - 2025-01-27 +#### Bug Fixes +- **(ci)** example runs on windows and macos - (b171694) - AtomicFS +#### Build system +- **(deps)** bump dagger.io/dagger in /cmd/firmware-action - (c840941) - dependabot[bot] +- **(deps)** update prettytable requirement in /.dagger-ci/daggerci - (6aa77aa) - dependabot[bot] +- **(deps)** bump docs/src/firmware-action-example - (82322c2) - dependabot[bot] +- **(deps)** bump github.com/go-git/go-git/v5 in /cmd/firmware-action - (c31eb83) - dependabot[bot] +#### Documentation +- update notes on interactive debugging - (a58aa67) - AtomicFS +#### Features +- **(cmd)** add DefconfigPath to list of sources - (2a109e2) - AtomicFS +#### Miscellaneous Chores +- **(cmd)** remove interactivity via SSH - (bf44f0d) - AtomicFS +- go mod tidy and drop toolchain pin - (76aa2b3) - Marvin Drees + +- - - + ## v0.11.1 - 2025-01-22 #### Bug Fixes - release workflow - (5e845cd) - AtomicFS diff --git a/Taskfile.yml b/Taskfile.yml index 316d18d0..2668e3c6 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -1,7 +1,7 @@ --- version: '3' vars: - SEMVER: 'v0.11.1' + SEMVER: 'v0.12.0' GOLANG_CODE_PATH: 'cmd/firmware-action' includes: diff --git a/action.yml b/action.yml index a7531604..70b9114b 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ runs: steps: - id: version shell: bash - run: echo "version=v0.11.1" >> "${GITHUB_OUTPUT}" + run: echo "version=v0.12.0" >> "${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 8db17856..bb2184aa 100644 --- a/cmd/firmware-action/main.go +++ b/cmd/firmware-action/main.go @@ -34,7 +34,7 @@ func main() { } } -const firmwareActionVersion = "v0.11.1" +const firmwareActionVersion = "v0.12.0" // CLI (Command Line Interface) holds data from environment var CLI struct {