Skip to content

Commit ebdfe27

Browse files
committed
[changelog] Post-release bump v6.3.0 → v6.3.1.dev0
1 parent 9c849ea commit ebdfe27

File tree

15 files changed

+75
-70
lines changed

15 files changed

+75
-70
lines changed

.github/workflows/autofix.yaml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Manage setup guide issue
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36-
run: uvx --no-progress 'repomatic==6.3.0' setup-guide
36+
run: uvx --no-progress --from . repomatic setup-guide
3737

3838
project-metadata:
3939
name: 🧬 Project metadata
@@ -55,7 +55,7 @@ jobs:
5555
- uses: astral-sh/setup-uv@v7.3.0
5656
- name: Run repomatic metadata
5757
id: project-metadata
58-
run: uvx --no-progress 'repomatic==6.3.0' metadata --output "$GITHUB_OUTPUT"
58+
run: uvx --no-progress --from . repomatic metadata --output "$GITHUB_OUTPUT"
5959

6060
# --- Formatters: rewrite files to enforce canonical style. ---
6161

@@ -84,7 +84,7 @@ jobs:
8484
# Projects with existing ruff config will keep their settings.
8585
run: |
8686
uv tool install 'ruff==0.15.5'
87-
uvx --no-progress 'repomatic==6.3.0' init ruff
87+
uvx --no-progress --from . repomatic init ruff
8888
# XXX Ruff is planning to support linting and formatting in one unified command at one point.
8989
# See: https://github.com/astral-sh/ruff/issues/8232
9090
- name: Run Ruff
@@ -93,7 +93,7 @@ jobs:
9393
ruff format --output-format github
9494
- id: pr-metadata
9595
run: >
96-
uvx --no-progress 'repomatic==6.3.0' pr-body
96+
uvx --no-progress --from . repomatic pr-body
9797
--template format-python
9898
--output "$GITHUB_OUTPUT"
9999
- uses: peter-evans/create-pull-request@v8.1.0
@@ -123,7 +123,7 @@ jobs:
123123
pyproject.toml || true
124124
- id: pr-metadata
125125
run: >
126-
uvx --no-progress 'repomatic==6.3.0' pr-body
126+
uvx --no-progress --from . repomatic pr-body
127127
--template format-pyproject
128128
--output "$GITHUB_OUTPUT"
129129
- uses: peter-evans/create-pull-request@v8.1.0
@@ -192,7 +192,7 @@ jobs:
192192
-exec gawk -i inplace '!/^- \[(Contents|Contributing|Footnotes|Related Lists)\]\(#.+\)$/{print}' "{}" \;
193193
- id: pr-metadata
194194
run: >
195-
uvx --no-progress 'repomatic==6.3.0' pr-body
195+
uvx --no-progress --from . repomatic pr-body
196196
--template format-markdown
197197
--output "$GITHUB_OUTPUT"
198198
- uses: peter-evans/create-pull-request@v8.1.0
@@ -231,7 +231,7 @@ jobs:
231231
${{ needs.project-metadata.outputs.json_files }}
232232
- id: pr-metadata
233233
run: >
234-
uvx --no-progress 'repomatic==6.3.0' pr-body
234+
uvx --no-progress --from . repomatic pr-body
235235
--template format-json
236236
--output "$GITHUB_OUTPUT"
237237
- uses: peter-evans/create-pull-request@v8.1.0
@@ -261,7 +261,7 @@ jobs:
261261
run: typos --write-changes
262262
- id: pr-metadata
263263
run: >
264-
uvx --no-progress 'repomatic==6.3.0' pr-body
264+
uvx --no-progress --from . repomatic pr-body
265265
--template fix-typos
266266
--output "$GITHUB_OUTPUT"
267267
- uses: peter-evans/create-pull-request@v8.1.0
@@ -298,12 +298,12 @@ jobs:
298298
- name: Optimize images
299299
id: optimize
300300
run: >
301-
uvx --no-progress 'repomatic==6.3.0' optimize-images
301+
uvx --no-progress --from . repomatic optimize-images
302302
--output "$GITHUB_OUTPUT"
303303
- id: pr-metadata
304304
env:
305305
GHA_PR_BODY_PREFIX: ${{ steps.optimize.outputs.markdown }}
306-
run: uvx --no-progress 'repomatic==6.3.0' pr-body --output "$GITHUB_OUTPUT"
306+
run: uvx --no-progress --from . repomatic pr-body --output "$GITHUB_OUTPUT"
307307
- uses: peter-evans/create-pull-request@v8.1.0
308308
with:
309309
assignees: ${{ github.actor }}
@@ -325,10 +325,10 @@ jobs:
325325
- uses: actions/checkout@v6.0.2
326326
- uses: astral-sh/setup-uv@v7.3.0
327327
- name: Sync .gitignore
328-
run: uvx --no-progress 'repomatic==6.3.0' sync-gitignore
328+
run: uvx --no-progress --from . repomatic sync-gitignore
329329
- id: pr-metadata
330330
run: >
331-
uvx --no-progress 'repomatic==6.3.0' pr-body
331+
uvx --no-progress --from . repomatic pr-body
332332
--template sync-gitignore
333333
--output "$GITHUB_OUTPUT"
334334
- uses: peter-evans/create-pull-request@v8.1.0
@@ -347,10 +347,10 @@ jobs:
347347
- uses: actions/checkout@v6.0.2
348348
- uses: astral-sh/setup-uv@v7.3.0
349349
- name: Sync bumpversion config
350-
run: uvx --no-progress 'repomatic==6.3.0' sync-bumpversion
350+
run: uvx --no-progress --from . repomatic sync-bumpversion
351351
- id: pr-metadata
352352
run: >
353-
uvx --no-progress 'repomatic==6.3.0' pr-body
353+
uvx --no-progress --from . repomatic pr-body
354354
--template sync-bumpversion
355355
--output "$GITHUB_OUTPUT"
356356
- uses: peter-evans/create-pull-request@v8.1.0
@@ -369,10 +369,10 @@ jobs:
369369
- uses: actions/checkout@v6.0.2
370370
- uses: astral-sh/setup-uv@v7.3.0
371371
- name: Sync linter configs
372-
run: uvx --no-progress 'repomatic==6.3.0' sync-linter-configs
372+
run: uvx --no-progress --from . repomatic sync-linter-configs
373373
- id: pr-metadata
374374
run: >
375-
uvx --no-progress 'repomatic==6.3.0' pr-body
375+
uvx --no-progress --from . repomatic pr-body
376376
--template sync-linter-configs
377377
--output "$GITHUB_OUTPUT"
378378
- uses: peter-evans/create-pull-request@v8.1.0
@@ -396,10 +396,10 @@ jobs:
396396
- uses: actions/checkout@v6.0.2
397397
- uses: astral-sh/setup-uv@v7.3.0
398398
- name: Sync Renovate config
399-
run: uvx --no-progress 'repomatic==6.3.0' sync-renovate
399+
run: uvx --no-progress --from . repomatic sync-renovate
400400
- id: pr-metadata
401401
run: >
402-
uvx --no-progress 'repomatic==6.3.0' pr-body
402+
uvx --no-progress --from . repomatic pr-body
403403
--template sync-renovate
404404
--output "$GITHUB_OUTPUT"
405405
- uses: peter-evans/create-pull-request@v8.1.0
@@ -424,10 +424,10 @@ jobs:
424424
fetch-depth: 0
425425
- uses: astral-sh/setup-uv@v7.3.0
426426
- name: Sync .mailmap
427-
run: uvx --no-progress 'repomatic==6.3.0' sync-mailmap --skip-if-missing
427+
run: uvx --no-progress --from . repomatic sync-mailmap --skip-if-missing
428428
- id: pr-metadata
429429
run: >
430-
uvx --no-progress 'repomatic==6.3.0' pr-body
430+
uvx --no-progress --from . repomatic pr-body
431431
--template sync-mailmap
432432
--output "$GITHUB_OUTPUT"
433433
- uses: peter-evans/create-pull-request@v8.1.0
@@ -453,10 +453,10 @@ jobs:
453453
- uses: astral-sh/setup-uv@v7.3.0
454454
- name: Generate graph
455455
# Package name and output path are auto-detected from pyproject.toml.
456-
run: uvx --no-progress 'repomatic==6.3.0' update-deps-graph
456+
run: uvx --no-progress --from . repomatic update-deps-graph
457457
- id: pr-metadata
458458
run: >
459-
uvx --no-progress 'repomatic==6.3.0' pr-body
459+
uvx --no-progress --from . repomatic pr-body
460460
--template update-deps-graph
461461
--output "$GITHUB_OUTPUT"
462462
- uses: peter-evans/create-pull-request@v8.1.0
@@ -491,7 +491,7 @@ jobs:
491491
fi
492492
- id: pr-metadata
493493
run: >
494-
uvx --no-progress 'repomatic==6.3.0' pr-body
494+
uvx --no-progress --from . repomatic pr-body
495495
--template update-docs
496496
--output "$GITHUB_OUTPUT"
497497
- uses: peter-evans/create-pull-request@v8.1.0
@@ -511,12 +511,12 @@ jobs:
511511
- uses: actions/checkout@v6.0.2
512512
- uses: astral-sh/setup-uv@v7.3.0
513513
- name: Re-create thin caller workflows
514-
run: uvx --no-progress 'repomatic==6.3.0' workflow sync --format thin-caller
514+
run: uvx --no-progress --from . repomatic workflow sync --format thin-caller
515515
- name: Sync non-reusable workflow headers
516-
run: uvx --no-progress 'repomatic==6.3.0' workflow sync --format header-only
516+
run: uvx --no-progress --from . repomatic workflow sync --format header-only
517517
- id: pr-metadata
518518
run: >
519-
uvx --no-progress 'repomatic==6.3.0' pr-body
519+
uvx --no-progress --from . repomatic pr-body
520520
--template sync-workflows
521521
--output "$GITHUB_OUTPUT"
522522
- uses: peter-evans/create-pull-request@v8.1.0
@@ -557,7 +557,7 @@ jobs:
557557
GHA_PR_BODY_PREFIX: |
558558
Files synced from [`kdeldycke/awesome-template@${TEMPLATE_GIT_HASH}`
559559
repository](${SOURCE_REPO}/tree/${TEMPLATE_GIT_HASH}).
560-
run: uvx --no-progress 'repomatic==6.3.0' pr-body --output "$GITHUB_OUTPUT"
560+
run: uvx --no-progress --from . repomatic pr-body --output "$GITHUB_OUTPUT"
561561
- name: Sync from template repo
562562
id: template_sync
563563
uses: AndreasAugustin/actions-template-sync@v2.5.2

.github/workflows/changelog.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- uses: astral-sh/setup-uv@v7.3.0
6666
- name: Run repomatic metadata
6767
id: project-metadata
68-
run: uvx --no-progress 'repomatic==6.3.0' metadata --output "$GITHUB_OUTPUT"
68+
run: uvx --no-progress --from . repomatic metadata --output "$GITHUB_OUTPUT"
6969

7070
fix-changelog:
7171
name: 📋 Fix changelog
@@ -88,10 +88,10 @@ jobs:
8888
- name: Fix changelog dates and admonitions
8989
env:
9090
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
91-
run: uvx --no-progress 'repomatic==6.3.0' lint-changelog --fix
91+
run: uvx --no-progress --from . repomatic lint-changelog --fix
9292
- id: pr-metadata
9393
run: >
94-
uvx --no-progress 'repomatic==6.3.0' pr-body
94+
uvx --no-progress --from . repomatic pr-body
9595
--template fix-changelog
9696
--output "$GITHUB_OUTPUT"
9797
- uses: peter-evans/create-pull-request@v8.1.0
@@ -138,7 +138,7 @@ jobs:
138138
- id: pr-metadata
139139
if: needs.project-metadata.outputs[format('{0}_bump_allowed', matrix.part)] == 'true'
140140
run: >
141-
uvx --no-progress 'repomatic==6.3.0' pr-body
141+
uvx --no-progress --from . repomatic pr-body
142142
--template bump-version
143143
--part "${{ matrix.part }}"
144144
--output "$GITHUB_OUTPUT"
@@ -176,7 +176,7 @@ jobs:
176176
- name: Prepare release
177177
# Updates changelog and citation dates, comparison URL, and removes warning.
178178
# Also hard-codes version in workflow URLs for kdeldycke/repomatic repository.
179-
run: uvx --no-progress 'repomatic==6.3.0' release-prep
179+
run: uvx --no-progress --from . repomatic release-prep
180180
- name: Prepare repository
181181
run: |
182182
git config --global user.name "${{ github.actor }}"
@@ -188,9 +188,9 @@ jobs:
188188
- name: Re-target main branch in workflows
189189
# This step is only used in the original repository to automate remote URL tagging.
190190
if: github.repository == 'kdeldycke/repomatic'
191-
run: uvx --no-progress 'repomatic==6.3.0' release-prep --post-release
191+
run: uvx --no-progress --from . repomatic release-prep --post-release
192192
- name: Add new changelog entry
193-
run: uvx --no-progress 'repomatic==6.3.0' changelog ./changelog.md
193+
run: uvx --no-progress --from . repomatic changelog ./changelog.md
194194
- name: Version bump
195195
run: bump-my-version bump --verbose patch
196196
- name: Sync uv.lock
@@ -201,7 +201,7 @@ jobs:
201201
v${{ steps.get_version.outputs.current_version }} → v$(bump-my-version show current_version)"
202202
- id: pr-metadata
203203
run: >
204-
uvx --no-progress 'repomatic==6.3.0' pr-body
204+
uvx --no-progress --from . repomatic pr-body
205205
--template prepare-release
206206
--version "${{ steps.get_version.outputs.current_version }}"
207207
--output "$GITHUB_OUTPUT"

.github/workflows/debug.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: astral-sh/setup-uv@v7.3.0
3535
- name: Run repomatic metadata
3636
id: project-metadata
37-
run: uvx --no-progress 'repomatic==6.3.0' --verbosity DEBUG metadata --output "$GITHUB_OUTPUT"
37+
run: uvx --no-progress --from . repomatic --verbosity DEBUG metadata --output "$GITHUB_OUTPUT"
3838
- name: Extend matrix with ubuntu-slim
3939
id: extend-matrix
4040
run: |

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: astral-sh/setup-uv@v7.3.0
2626
- name: Run repomatic metadata
2727
id: project-metadata
28-
run: uvx --no-progress 'repomatic==6.3.0' metadata --output "$GITHUB_OUTPUT"
28+
run: uvx --no-progress --from . repomatic metadata --output "$GITHUB_OUTPUT"
2929

3030
deploy-docs:
3131
name: 📖 Deploy Sphinx doc
@@ -111,7 +111,7 @@ jobs:
111111
env:
112112
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
113113
run: >
114-
uvx --no-progress 'repomatic==6.3.0' broken-links
114+
uvx --no-progress --from . repomatic broken-links
115115
${{ steps.lychee_run.outputs.exit_code != '' && format(
116116
'--lychee-exit-code {0}',
117117
steps.lychee_run.outputs.exit_code) || '' }}

.github/workflows/labels.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
tar xJ --strip-components=1 --directory=/tmp/lm --file=/tmp/lm.tar.xz
4040
mv /tmp/lm/labelmaker /usr/local/bin/labelmaker
4141
- name: Dump labels
42-
run: uvx --no-progress 'repomatic==6.3.0' init labels
42+
run: uvx --no-progress --from . repomatic init labels
4343
- name: Apply labels
4444
env:
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -74,7 +74,7 @@ jobs:
7474
- uses: astral-sh/setup-uv@v7.3.0
7575
- name: Run repomatic metadata
7676
id: project-metadata
77-
run: uvx --no-progress 'repomatic==6.3.0' metadata --output "$GITHUB_OUTPUT"
77+
run: uvx --no-progress --from . repomatic metadata --output "$GITHUB_OUTPUT"
7878

7979
file-labeller:
8080
name: 📁 File-based PR labeller
@@ -88,7 +88,7 @@ jobs:
8888
- uses: actions/checkout@v6.0.2
8989
- uses: astral-sh/setup-uv@v7.3.0
9090
- name: Dump default rules
91-
run: uvx --no-progress 'repomatic==6.3.0' init labels
91+
run: uvx --no-progress --from . repomatic init labels
9292
- name: Apply rules
9393
uses: actions/labeler@v6.0.1
9494
with:
@@ -106,7 +106,7 @@ jobs:
106106
- uses: actions/checkout@v6.0.2
107107
- uses: astral-sh/setup-uv@v7.3.0
108108
- name: Dump default rules
109-
run: uvx --no-progress 'repomatic==6.3.0' init labels
109+
run: uvx --no-progress --from . repomatic init labels
110110
- name: Apply rules
111111
uses: github/issue-labeler@v3.4
112112
with:
@@ -127,4 +127,4 @@ jobs:
127127
- name: Add sponsor label
128128
env:
129129
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
130-
run: uvx --no-progress 'repomatic==6.3.0' sponsor-label
130+
run: uvx --no-progress --from . repomatic sponsor-label

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: astral-sh/setup-uv@v7.3.0
3636
- name: Run repomatic metadata
3737
id: project-metadata
38-
run: uvx --no-progress 'repomatic==6.3.0' metadata --output "$GITHUB_OUTPUT"
38+
run: uvx --no-progress --from . repomatic metadata --output "$GITHUB_OUTPUT"
3939

4040
lint-repo:
4141
name: 🏠 Lint repo
@@ -49,7 +49,7 @@ jobs:
4949
- name: Lint repository metadata
5050
env:
5151
GH_TOKEN: ${{ github.token }}
52-
run: uvx --no-progress 'repomatic==6.3.0' lint-repo
52+
run: uvx --no-progress --from . repomatic lint-repo
5353

5454
lint-types:
5555
name: 🛡️ Lint types
@@ -166,7 +166,7 @@ jobs:
166166
- uses: astral-sh/setup-uv@v7.3.0
167167
- name: Generate zizmor config if missing
168168
if: hashFiles('zizmor.yaml') == ''
169-
run: uvx --no-progress 'repomatic==6.3.0' init linters
169+
run: uvx --no-progress --from . repomatic init linters
170170
- name: Run zizmor
171171
run: uvx --no-progress 'zizmor==1.22.0' --format github --offline .
172172

0 commit comments

Comments
 (0)