Skip to content

Commit b7390e7

Browse files
committed
[changelog] Release v7.0.0
1 parent 10aa0f0 commit b7390e7

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-
## [`7.0.0.dev0` (unreleased)](https://github.com/kdeldycke/meta-package-manager/compare/v6.6.0...main)
4-
5-
> [!WARNING]
6-
> This version is **not released yet** and is under active development.
3+
## [`7.0.0` (2026-06-26)](https://github.com/kdeldycke/meta-package-manager/compare/v6.6.0...v7.0.0)
74

85
- **Breaking:** [mpm] Rename the `--allow-no-cooldown` flag to the `--require-cooldown-support`/`--allow-unsupported-managers` pair, and its `allow_no_cooldown` config to `require_cooldown_support` (default `true`).
96
- **Breaking:** [mpm] The `sort_by` configuration option is now a list of fields, matching the repeatable `--sort-by`. Wrap an existing scalar value in brackets: `sort_by = "package_id"` becomes `sort_by = ["package_id"]`.

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: 7.0.0.dev0
11+
version: 7.0.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-06-21
14+
date-released: 2026-06-26
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__ = "7.0.0.dev0"
24+
__version__ = "7.0.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 = "7.0.0.dev0"
8+
version = "7.0.0"
99
description = "🎁 wraps all package managers with a unifying CLI"
1010
readme = "readme.md"
1111
keywords = [
@@ -212,7 +212,7 @@ optional-dependencies.toml = [ "click-extra[toml]" ]
212212
optional-dependencies.xml = [ "click-extra[xml]" ]
213213
optional-dependencies.yaml = [ "click-extra[yaml]" ]
214214
urls.Changelog = "https://github.com/kdeldycke/meta-package-manager/blob/main/changelog.md"
215-
urls.Download = "https://github.com/kdeldycke/meta-package-manager/releases/tag/v7.0.0.dev0"
215+
urls.Download = "https://github.com/kdeldycke/meta-package-manager/releases/tag/v7.0.0"
216216
urls.Funding = "https://github.com/sponsors/kdeldycke"
217217
urls.Homepage = "https://github.com/kdeldycke/meta-package-manager"
218218
urls.Issues = "https://github.com/kdeldycke/meta-package-manager/issues"
@@ -392,7 +392,7 @@ run.source = [ "meta_package_manager" ]
392392
report.precision = 2
393393

394394
[tool.bumpversion]
395-
current_version = "7.0.0.dev0"
395+
current_version = "7.0.0"
396396
# Parse versions with an optional .devN suffix (PEP 440).
397397
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.dev(?P<dev>\\d+))?"
398398
serialize = [

0 commit comments

Comments
 (0)