From af65c7bbd6a1441fda67c16bb8ba5725bad70e8c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 17:34:47 +0000 Subject: [PATCH 1/6] ci(pre-commit): :construction_worker: update pre-commit CI version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/commitizen-tools/commitizen: v4.8.4 → v4.9.1](https://github.com/commitizen-tools/commitizen/compare/v4.8.4...v4.9.1) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8f510cc..c4ec5fe 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,7 +17,7 @@ repos: - id: end-of-file-fixer - repo: https://github.com/commitizen-tools/commitizen - rev: v4.8.4 + rev: v4.9.1 hooks: - id: commitizen From 308e4377c8a14fbb8d3d9e9aa8b9fdbcbbdcb042 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Wed, 17 Sep 2025 11:30:05 +0200 Subject: [PATCH 2/6] ci: :construction_worker: use reusable test workflow (#201) # Description Needs a quick review. ## Checklist - [x] Ran `just run-all` --- .github/workflows/test.yml | 26 +++----------------------- 1 file changed, 3 insertions(+), 23 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2536271..8b345bc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,26 +11,6 @@ permissions: read-all jobs: test-copier: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 - - - name: Set up uv - uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 - with: - enable-cache: true - - - name: Set up Quarto - uses: quarto-dev/quarto-actions/setup@9e48da27e184aa238fcb49f5db75469626d43adb # v2.1.9 - - - name: Install justfile - run: sudo apt install -y just - - - name: Set Git user - run: | - git config --global user.name "GitHub Actions" - git config --global user.email "fake@example.com" - - - name: Test and check template creation - run: just _tests + uses: seedcase-project/.github/.github/workflows/reusable-test-copier.yml@main + with: + test-recipe: "_tests" From 2d796f64d9ae57b2dfd2ec3618f628c1da3c097b Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Thu, 18 Sep 2025 13:37:55 +0200 Subject: [PATCH 3/6] docs: :memo: move contributors file and update it (#206) # Description Small update, moved `_contributors.qmd` to `includes/` Needs a quick review. ## Checklist - [x] Ran `just run-all` --- README.md | 4 ++-- README.qmd | 2 +- _contributors.qmd => docs/includes/_contributors.qmd | 3 +-- index.qmd | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) rename _contributors.qmd => docs/includes/_contributors.qmd (59%) diff --git a/README.md b/README.md index cda0810..765e9d0 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,8 @@ to abide by its terms. ### Contributors -These are the people who have contributed by submitting changes through -pull requests :tada: +The following people have contributed to this project by submitting pull +requests :tada: [@lwjohnst86](https://github.com/lwjohnst86), [@martonvago](https://github.com/martonvago), diff --git a/README.qmd b/README.qmd index bab70e0..03d0ff6 100644 --- a/README.qmd +++ b/README.qmd @@ -39,7 +39,7 @@ to abide by its terms. ### Contributors -{{< include /_contributors.qmd >}} +{{< include /docs/includes/_contributors.qmd >}} ## Licensing diff --git a/_contributors.qmd b/docs/includes/_contributors.qmd similarity index 59% rename from _contributors.qmd rename to docs/includes/_contributors.qmd index b8dae3e..f7987aa 100644 --- a/_contributors.qmd +++ b/docs/includes/_contributors.qmd @@ -1,4 +1,3 @@ -These are the people who have contributed by submitting changes through pull requests :tada: - +The following people have contributed to this project by submitting pull requests :tada: [\@lwjohnst86](https://github.com/lwjohnst86), [\@martonvago](https://github.com/martonvago), [\@signekb](https://github.com/signekb) diff --git a/index.qmd b/index.qmd index a5add48..7042c5e 100644 --- a/index.qmd +++ b/index.qmd @@ -71,7 +71,7 @@ share your ideas or contribute code. Your input makes us better! ### Contributors -{{< include /_contributors.qmd >}} +{{< include /docs/includes/_contributors.qmd >}} ## Licensing From 87525bfbfd736b7546b1b1f54f30d70bbf3cb0d9 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Thu, 18 Sep 2025 13:37:59 +0200 Subject: [PATCH 4/6] fix: :bug: overwrite `_contributor.qmd` with `>` (#207) # Description Need to use `>`, not `>>`. Needs a quick review. ## Checklist - [x] Ran `just run-all` --- template/justfile.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/justfile.jinja b/template/justfile.jinja index 8540b4f..182379e 100644 --- a/template/justfile.jinja +++ b/template/justfile.jinja @@ -120,7 +120,7 @@ build-readme: # Generate a Quarto include file with the contributors build-contributors: - sh ./tools/get-contributors.sh {{ github_repo_spec }} >> docs/includes/_contributors.qmd + sh ./tools/get-contributors.sh {{ github_repo_spec }} > docs/includes/_contributors.qmd # Check for and apply updates from the template update-from-template: From b76199ab043ba590aa4c6380d36bda9ba75b921b Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Thu, 18 Sep 2025 13:38:03 +0200 Subject: [PATCH 5/6] refactor: :arrow_up: upgrade pre-commit hook versions (#208) # Description Ran `just install-precommit` and updated versions. Needs a quick review. ## Checklist - [x] Ran `just run-all` --- template/.pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/.pre-commit-config.yaml b/template/.pre-commit-config.yaml index 8f510cc..c4ec5fe 100644 --- a/template/.pre-commit-config.yaml +++ b/template/.pre-commit-config.yaml @@ -17,7 +17,7 @@ repos: - id: end-of-file-fixer - repo: https://github.com/commitizen-tools/commitizen - rev: v4.8.4 + rev: v4.9.1 hooks: - id: commitizen From 3ece1ee47f737f3557c3305edb07b018d7c8bee2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 18 Sep 2025 11:43:39 +0000 Subject: [PATCH 6/6] build(version): :bookmark: update version from 0.17.9 to 0.17.10 --- .cz.toml | 2 +- CHANGELOG.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.cz.toml b/.cz.toml index b44a869..54a6966 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "0.17.9" +version = "0.17.10" bump_message = "build(version): :bookmark: update version from $current_version to $new_version" version_schema = "semver" version_provider = "commitizen" diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e06a92..2f52b2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,16 @@ often, sometimes several in a day. It also means any individual release will not have many changes within it. Below is a list of releases along with what was changed within it. +## 0.17.10 (2025-09-18) + +### Fix + +- :bug: overwrite `_contributor.qmd` with `>` (#207) + +### Refactor + +- :arrow_up: upgrade pre-commit hook versions (#208) + ## 0.17.9 (2025-09-10) ### Refactor