Skip to content

Commit 41c7edb

Browse files
committed
[changelog] Release v6.6.0
1 parent 30f0f24 commit 41c7edb

4 files changed

Lines changed: 7 additions & 10 deletions

File tree

changelog.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# Changelog
22

3-
## [`6.6.0.dev0` (unreleased)](https://github.com/kdeldycke/meta-package-manager/compare/v6.5.1...main)
4-
5-
> [!WARNING]
6-
> This version is **not released yet** and is under active development.
3+
## [`6.6.0` (2026-06-17)](https://github.com/kdeldycke/meta-package-manager/compare/v6.5.1...v6.6.0)
74

85
- **Breaking:** [mpm] Rename the global `--stats / --no-stats` flag to `--summary / --no-summary`. Scripts passing the old flag must update.
96
- **Breaking:** [mpm] Move `cyclonedx-python-lib` and `spdx-tools` into a new `[sbom]` extra: `mpm sbom` now requires `pip install meta-package-manager[sbom]`. `packageurl-python` stays in the runtime install. The standalone binary distribution keeps shipping SBOM support: `[tool.repomatic] nuitka.extras = ["sbom"]` syncs the extra into the build venv and `[tool.nuitka] include-package = ["cyclonedx", "spdx_tools"]` forces Nuitka to bundle the `try/except`-guarded imports.

citation.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ authors:
88
email: kevin@deldycke.com
99
orcid: "https://orcid.org/0000-0001-9748-9014"
1010
doi: 10.5281/zenodo.6809571
11-
version: 6.6.0.dev0
11+
version: 6.6.0
1212
# The release date is kept up to date by the external workflows. See:
1313
# https://github.com/kdeldycke/workflows/blob/33b704b489c1aa18b7b7efbf963e153e91e1c810/.github/workflows/changelog.yaml#L135-L137
14-
date-released: 2026-05-28
14+
date-released: 2026-06-17
1515
url: "https://github.com/kdeldycke/meta-package-manager"

meta_package_manager/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121

2222
from __future__ import annotations
2323

24-
__version__ = "6.6.0.dev0"
24+
__version__ = "6.6.0"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = [ "uv-build>=0.9" ]
55
[project]
66
# Docs: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
77
name = "meta-package-manager"
8-
version = "6.6.0.dev0"
8+
version = "6.6.0"
99
description = "🎁 wraps all package managers with a unifying CLI"
1010
readme = "readme.md"
1111
keywords = [
@@ -212,7 +212,7 @@ meta-package-manager = "meta_package_manager.__main__:main"
212212

213213
[project.urls]
214214
"Homepage" = "https://github.com/kdeldycke/meta-package-manager"
215-
"Download" = "https://github.com/kdeldycke/meta-package-manager/releases/tag/v6.6.0.dev0"
215+
"Download" = "https://github.com/kdeldycke/meta-package-manager/releases/tag/v6.6.0"
216216
"Changelog" = "https://github.com/kdeldycke/meta-package-manager/blob/main/changelog.md"
217217
"Issues" = "https://github.com/kdeldycke/meta-package-manager/issues"
218218
"Repository" = "https://github.com/kdeldycke/meta-package-manager"
@@ -350,7 +350,7 @@ run.source = [ "meta_package_manager" ]
350350
report.precision = 2
351351

352352
[tool.bumpversion]
353-
current_version = "6.6.0.dev0"
353+
current_version = "6.6.0"
354354
allow_dirty = true
355355
ignore_missing_files = true
356356
# Parse versions with an optional .devN suffix (PEP 440).

0 commit comments

Comments
 (0)