Skip to content

Commit c4c6a8f

Browse files
committed
[changelog] Post-release bump v8.8.0 β†’ v8.8.1.dev0
1 parent e5fcbc9 commit c4c6a8f

6 files changed

Lines changed: 14 additions & 9 deletions

File tree

β€Žchangelog.mdβ€Ž

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [`8.8.1.dev0` (unreleased)](https://github.com/kdeldycke/click-extra/compare/v8.8.0...main)
4+
5+
> [!WARNING]
6+
> This version is **not released yet** and is under active development.
7+
38
## [`8.8.0` (2026-07-31)](https://github.com/kdeldycke/click-extra/compare/v8.7.0...v8.8.0)
49

510
- **Breaking:** `OperationTrail` now gates its per-item and finisher elapsed times on a new `timer` argument that defaults to `None`, following `--time` / `--no-time`; its finisher no longer always shows a clock (pass `timer=True` to restore it).

β€Žcitation.cffβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors:
88
email: kevin@deldycke.com
99
orcid: "https://orcid.org/0000-0001-9748-9014"
1010
doi: 10.5281/zenodo.7116050
11-
version: 8.8.0
11+
version: 8.8.1.dev0
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
1414
date-released: 2026-07-31

β€Žclick_extra/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def _scrub_foreign_modules() -> None:
570570
del _scrub_foreign_modules
571571

572572

573-
__version__ = "8.8.0"
573+
__version__ = "8.8.1.dev0"
574574
__git_branch__ = ""
575575
__git_date__ = ""
576576
__git_long_hash__ = ""

β€Ž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 = "click-extra"
8-
version = "8.8.0"
8+
version = "8.8.1.dev0"
99
description = "🌈 Drop-in replacement for Click to make user-friendly and colorful CLI"
1010
readme = "readme.md"
1111
keywords = [
@@ -204,7 +204,7 @@ click-extra = "click_extra.__main__:main"
204204

205205
[project.urls]
206206
"Homepage" = "https://github.com/kdeldycke/click-extra"
207-
"Download" = "https://github.com/kdeldycke/click-extra/releases/tag/v8.8.0"
207+
"Download" = "https://github.com/kdeldycke/click-extra/releases/tag/v8.8.1.dev0"
208208
"Changelog" = "https://github.com/kdeldycke/click-extra/blob/main/changelog.md"
209209
"Issues" = "https://github.com/kdeldycke/click-extra/issues"
210210
"Repository" = "https://github.com/kdeldycke/click-extra"
@@ -474,7 +474,7 @@ report.precision = 2
474474
file = "tests/cli-test-suite.toml"
475475

476476
[tool.bumpversion]
477-
current_version = "8.8.0"
477+
current_version = "8.8.1.dev0"
478478
# Parse versions with an optional .devN suffix (PEP 440).
479479
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(\\.dev(?P<dev>\\d+))?"
480480
serialize = [

β€Žreadme.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<a href="https://github.com/kdeldycke/click-extra/">
3-
<img src="https://raw.githubusercontent.com/kdeldycke/click-extra/v8.8.0/docs/assets/logo-banner.svg" alt="Click Extra">
3+
<img src="https://raw.githubusercontent.com/kdeldycke/click-extra/main/docs/assets/logo-banner.svg" alt="Click Extra">
44
</a>
55
</p>
66

@@ -44,11 +44,11 @@ This is a great way to play with Click Extra and check that it runs fine on your
4444

4545
It transforms this vanilla `click` CLI:
4646

47-
![click CLI help screen](https://raw.githubusercontent.com/kdeldycke/click-extra/v8.8.0/docs/assets/click-help-screen.png)
47+
![click CLI help screen](https://raw.githubusercontent.com/kdeldycke/click-extra/main/docs/assets/click-help-screen.png)
4848

4949
Into this:
5050

51-
![click-extra CLI help screen](https://raw.githubusercontent.com/kdeldycke/click-extra/v8.8.0/docs/assets/click-extra-screen.png)
51+
![click-extra CLI help screen](https://raw.githubusercontent.com/kdeldycke/click-extra/main/docs/assets/click-extra-screen.png)
5252

5353
To understand how we ended up with the result above, [go read the tutorial](https://kdeldycke.github.io/click-extra/tutorial.html).
5454

β€Žuv.lockβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)