Skip to content

Commit 9a7a6e9

Browse files
authored
Merge branch 'main' into refactor/match-changes-from-tsquared-and-root
2 parents bee810b + bd601bd commit 9a7a6e9

16 files changed

Lines changed: 40 additions & 23 deletions
File renamed without changes.
File renamed without changes.

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
id: check_changes
6868
run: |
6969
# Determine if a bump is possible.
70-
if [[ $(cog bump --auto --dry-run) != No* ]]; then
70+
if [[ $(cog --config .config/cog.toml bump --auto --dry-run) != No* ]]; then
7171
echo "has_changes=true" >> $GITHUB_OUTPUT
7272
else
7373
echo "has_changes=false" >> $GITHUB_OUTPUT
@@ -76,7 +76,7 @@ jobs:
7676
- name: Create tag and update changelog
7777
if: steps.check_changes.outputs.has_changes == 'true'
7878
run: |
79-
cog bump --auto
79+
cog --config .config/cog.toml bump --auto
8080
8181
- name: Create GitHub release
8282
if: steps.check_changes.outputs.has_changes == 'true'

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ repos:
2929
- id: typos
3030

3131
- repo: https://github.com/rvben/rumdl-pre-commit
32-
rev: v0.1.94
32+
rev: v0.1.96
3333
hooks:
3434
- id: rumdl-fmt # Auto-format

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ within each release.
2222
Commits from bots, like `dependabot` or `pre-commit-ci`, are not
2323
included in the changelog.
2424

25+
## [0.23.1](https://github.com/seedcase-project/template-python-package/compare/0.23.0..0.23.1) - 2026-05-22
26+
27+
### ♻️ Refactor
28+
29+
- Move config files into `.config/` or `pyproject.toml`
30+
[#280](https://github.com/seedcase-project/template-python-package/pull/280)
31+
by [`@lwjohnst86`](https://github.com/lwjohnst86)
32+
([f65c2bc](https://github.com/seedcase-project/template-python-package/commit/f65c2bc7fad7654ed5261bd9e5d0614121905e17))
33+
2534
## [0.23.0](https://github.com/seedcase-project/template-python-package/compare/0.22.3..0.23.0) - 2026-05-22
2635

2736
### ✨ Features

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ update-quarto-theme:
2727

2828
# Update files in the template from the Copier parent folder
2929
sync-template-files:
30-
cp CODE_OF_CONDUCT.md .pre-commit-config.yaml .typos.toml .editorconfig .rumdl.toml template/
30+
cp CODE_OF_CONDUCT.md .pre-commit-config.yaml .typos.toml .editorconfig template/
31+
cp .config/rumdl.toml template/.config/
3132
mkdir -p template/tools
3233
cp tools/get-contributors.sh template/tools/
3334
cp .github/pull_request_template.md template/.github/
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
line_length = 72
44
flavor = "quarto"
55
exclude = [
6-
# Common directories to exclude
7-
".github",
8-
# This is auto-generated from the qmd version
9-
"**/README.md",
10-
# This has it's own structure
11-
"**/LICENSE.md"
6+
# Common directories to exclude
7+
".github",
8+
# This is auto-generated from the qmd version
9+
"**/README.md",
10+
# This has it's own structure
11+
"**/LICENSE.md",
1212
]
1313

1414
# List style: `-`

0 commit comments

Comments
 (0)