From 24031c8eb190247b100ec77d11739c294510b935 Mon Sep 17 00:00:00 2001 From: Konstantinos Athanasiou Date: Mon, 19 Jan 2026 22:25:45 +0200 Subject: [PATCH 1/7] add release_plz support --- .github/workflows/release-plz.yml | 52 +++++++++++++++++++++++++++++++ release-plz.toml | 3 ++ 2 files changed, 55 insertions(+) create mode 100644 .github/workflows/release-plz.yml create mode 100644 release-plz.toml diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml new file mode 100644 index 0000000..05a1ebe --- /dev/null +++ b/.github/workflows/release-plz.yml @@ -0,0 +1,52 @@ +name: Release-plz + +on: + push: + branches: + - main + +jobs: + release-plz-release: + name: Release-plz release + runs-on: ubuntu-latest + if: ${{ github.repository_owner == 'dinosath' }} + permissions: + contents: write + id-token: write + steps: + - &checkout + name: Checkout repository + uses: actions/checkout@v6 + with: + fetch-depth: 0 + persist-credentials: true + token: ${{ secrets.RELEASE_PLZ_TOKEN }} + - &install-rust + name: Install Rust toolchain + uses: dtolnay/rust-toolchain@stable + - name: Run release-plz + uses: release-plz/action@v0.5 + with: + command: release + env: + GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }} + + release-plz-pr: + name: Release-plz PR + runs-on: ubuntu-latest + if: ${{ github.repository_owner == 'dinosath' }} + permissions: + pull-requests: write + contents: write + concurrency: + group: release-plz-${{ github.ref }} + cancel-in-progress: false + steps: + - *checkout + - *install-rust + - name: Run release-plz + uses: release-plz/action@v0.5 + with: + command: release-pr + env: + GITHUB_TOKEN: ${{ secrets.RELEASE_PLZ_TOKEN }} diff --git a/release-plz.toml b/release-plz.toml new file mode 100644 index 0000000..6481311 --- /dev/null +++ b/release-plz.toml @@ -0,0 +1,3 @@ +[workspace] +changelog_config = "cliff.toml" +git_only = true From 12aa369205ab8ed14cd5b52ddac8f11f20bd3482 Mon Sep 17 00:00:00 2001 From: Konstantinos Athanasiou Date: Mon, 19 Jan 2026 22:30:43 +0200 Subject: [PATCH 2/7] feat: test release plz --- CODE_OF_CONDUCT.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 34e084c..6a0a034 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -14,9 +14,6 @@ diverse, inclusive, and healthy community. ## Our Standards -Examples of behavior that contributes to a positive environment for our -community include: - - Demonstrating empathy and kindness toward other people - Being respectful of differing opinions, viewpoints, and experiences - Giving and gracefully accepting constructive feedback From 8cce2a9453a310da685c7abcaf0a64360e227e46 Mon Sep 17 00:00:00 2001 From: Konstantinos Athanasiou Date: Mon, 19 Jan 2026 23:01:51 +0200 Subject: [PATCH 3/7] fix release plz --- release-plz.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/release-plz.toml b/release-plz.toml index 6481311..86ec4ff 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -1,3 +1,4 @@ [workspace] changelog_config = "cliff.toml" git_only = true +publish = false From 94bf9d8bcf970c4cf21e97c4453606a77c1b40a9 Mon Sep 17 00:00:00 2001 From: Konstantinos Athanasiou Date: Mon, 19 Jan 2026 23:12:42 +0200 Subject: [PATCH 4/7] feat:set release always to false --- release-plz.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/release-plz.toml b/release-plz.toml index 86ec4ff..ed5bbad 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -2,3 +2,4 @@ changelog_config = "cliff.toml" git_only = true publish = false +release_always = false From 29659023672a4bd1254662878b13bca9493ba2d2 Mon Sep 17 00:00:00 2001 From: Konstantinos Athanasiou Date: Mon, 19 Jan 2026 23:20:37 +0200 Subject: [PATCH 5/7] chore: release v0.14.2 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bdce61..0623359 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.14.2] - 2026-01-19 + +### 🚀 Features + +- Set release always to false + + + ## [0.13.1] - 2025-11-12 ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index 1db5f73..8103526 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baker" -version = "0.14.1" +version = "0.14.2" edition = "2021" authors = ["Ali Aliyev "] repository = "https://github.com/aliev/baker" From ae39bbbdd5dc1e73be26ee589c37f67c95047ac6 Mon Sep 17 00:00:00 2001 From: Konstantinos Athanasiou Date: Wed, 21 Jan 2026 22:51:38 +0200 Subject: [PATCH 6/7] feat: disable git release --- .github/workflows/changelog.yaml | 24 ------------------------ release-plz.toml | 1 + 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 .github/workflows/changelog.yaml diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml deleted file mode 100644 index f2fa257..0000000 --- a/.github/workflows/changelog.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: changelog.yaml -on: - pull_request: - push: - tags: - - '**[0-9]+.[0-9]+.[0-9]+*' - -jobs: - generate-changelog: - name: Generate changelog - runs-on: "ubuntu-latest" - outputs: - release_body: ${{ steps.git-cliff.outputs.content }} - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Generate a changelog - uses: orhun/git-cliff-action@main - id: git-cliff - with: - config: cliff.toml - args: -vv --latest --no-exec --github-repo ${{ github.repository }} diff --git a/release-plz.toml b/release-plz.toml index ed5bbad..67edffa 100644 --- a/release-plz.toml +++ b/release-plz.toml @@ -3,3 +3,4 @@ changelog_config = "cliff.toml" git_only = true publish = false release_always = false +git_release_enable = false From 28ea8e1d101cad695b705ec1dd42c25aeb4b8a06 Mon Sep 17 00:00:00 2001 From: Konstantinos Athanasiou Date: Wed, 21 Jan 2026 22:59:27 +0200 Subject: [PATCH 7/7] chore: release v0.14.3 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0623359..da29c6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [0.14.3] - 2026-01-21 + +### 🚀 Features + +- Disable git release + + + ## [0.14.2] - 2026-01-19 ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index 8103526..c70fd8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "baker" -version = "0.14.2" +version = "0.14.3" edition = "2021" authors = ["Ali Aliyev "] repository = "https://github.com/aliev/baker"