Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Changelog

## [`6.3.2.dev0` (unreleased)](https://github.com/kdeldycke/repomatic/compare/v6.3.1...main)
## [`6.3.3.dev0` (unreleased)](https://github.com/kdeldycke/repomatic/compare/v6.3.2...main)

> [!WARNING]
> This version is **not released yet** and is under active development.

## [`6.3.2` (2026-03-08)](https://github.com/kdeldycke/repomatic/compare/v6.3.1...v6.3.2)

- Add `--all-extras` to the `uv sync` step in `tests.yaml` to catch incompatibilities between optional dependency groups. No-op for projects with no extras.
- Add `test-package-install` job to `tests.yaml`: verifies all `[project.scripts]` entry points install and run correctly via `uvx`, `uv run --with`, module invocation, `uv tool install`, and `pipx run`, from both PyPI and GitHub. Runs once on a single stable OS/Python instead of repeating across the full matrix. Add `cli_scripts` output to `repomatic metadata`.
- Sync `customManagers` to downstream `renovate.json5` so Renovate can update inline version pins in workflow files (Python packages in `uvx`/`uv pip` commands, binary tool versions in download URLs, npm packages). Only the self-referencing uv entry (which targets `renovate.json5` itself) is excluded to prevent an endless sync loop.
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ requires = [ "uv-build>=0.9" ]
[project]
# Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
name = "repomatic"
version = "6.3.2.dev0"
version = "6.3.3.dev0"
description = "🏭 Automate repository maintenance, releases, and CI/CD workflows"
readme = "readme.md"
keywords = [
Expand Down Expand Up @@ -118,7 +118,7 @@ repomatic = "repomatic.__main__:main"

[project.urls]
"Changelog" = "https://github.com/kdeldycke/repomatic/blob/main/changelog.md"
"Download" = "https://github.com/kdeldycke/repomatic/releases/tag/v6.3.2.dev0"
"Download" = "https://github.com/kdeldycke/repomatic/releases/tag/v6.3.3.dev0"
"Funding" = "https://github.com/sponsors/kdeldycke"
"Homepage" = "https://github.com/kdeldycke/repomatic"
"Issues" = "https://github.com/kdeldycke/repomatic/issues"
Expand Down Expand Up @@ -221,7 +221,7 @@ run.source = [ "repomatic" ]
report.precision = 2

[tool.bumpversion]
current_version = "6.3.2.dev0"
current_version = "6.3.3.dev0"
allow_dirty = true
ignore_missing_files = true
# Parse versions with an optional .devN suffix (PEP 440).
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ To ease deployment, standalone executables of `repomatic`'s latest version are a

| Platform | `arm64` | `x86_64` |
| :---------- | ------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
| **Linux** | [Download `repomatic-6.3.1-linux-arm64.bin`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.1/repomatic-6.3.1-linux-arm64.bin) | [Download `repomatic-6.3.1-linux-x64.bin`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.1/repomatic-6.3.1-linux-x64.bin) |
| **macOS** | [Download `repomatic-6.3.1-macos-arm64.bin`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.1/repomatic-6.3.1-macos-arm64.bin) | [Download `repomatic-6.3.1-macos-x64.bin`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.1/repomatic-6.3.1-macos-x64.bin) |
| **Windows** | [Download `repomatic-6.3.1-windows-arm64.exe`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.1/repomatic-6.3.1-windows-arm64.exe) | [Download `repomatic-6.3.1-windows-x64.exe`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.1/repomatic-6.3.1-windows-x64.exe) |
| **Linux** | [Download `repomatic-6.3.2-linux-arm64.bin`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.2/repomatic-6.3.2-linux-arm64.bin) | [Download `repomatic-6.3.2-linux-x64.bin`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.2/repomatic-6.3.2-linux-x64.bin) |
| **macOS** | [Download `repomatic-6.3.2-macos-arm64.bin`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.2/repomatic-6.3.2-macos-arm64.bin) | [Download `repomatic-6.3.2-macos-x64.bin`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.2/repomatic-6.3.2-macos-x64.bin) |
| **Windows** | [Download `repomatic-6.3.2-windows-arm64.exe`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.2/repomatic-6.3.2-windows-arm64.exe) | [Download `repomatic-6.3.2-windows-x64.exe`](https://github.com/kdeldycke/repomatic/releases/download/v6.3.2/repomatic-6.3.2-windows-x64.exe) |

That way you have a chance to try it out without installing Python or `uv`. Or embed it in your CI/CD pipelines running on minimal images. Or run it on old platforms without worrying about dependency hell.

Expand Down
2 changes: 1 addition & 1 deletion repomatic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@

from __future__ import annotations

__version__ = "6.3.2.dev0"
__version__ = "6.3.3.dev0"
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading