Skip to content

Commit 080d620

Browse files
committed
Release v5.0.0 🚀
1 parent befdebf commit 080d620

3 files changed

Lines changed: 22 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@
55

66

77

8+
## [5.0.0] - 2026-05-13
9+
10+
### <!-- 0 -->🚀 Features
11+
- Use instrument_hooks markers in walltime by @GuillaumeLagrange
12+
- Declare native extension free-thread safe (#120) by @art049 in [#120](https://github.com/CodSpeedHQ/pytest-codspeed/pull/120)
13+
- Remove cffi in favor of native extension by @adriencaccia
14+
15+
### <!-- 4 -->⚡ Performance
16+
- Bind callgrind start/stop directly to avoid extra frame by @art049 in [#96](https://github.com/CodSpeedHQ/pytest-codspeed/pull/96)
17+
18+
### <!-- 7 -->⚙️ Internals
19+
- Ignore common compilation warnings for instrument-hooks by @GuillaumeLagrange in [#118](https://github.com/CodSpeedHQ/pytest-codspeed/pull/118)
20+
- Use unsigned bash in the macos test by @GuillaumeLagrange
21+
- Bump pinned uv version to 0.11.14 by @art049
22+
- Add python 3.15 and 3.15t to test matrix by @art049
23+
- Add 3.14.t in test suite by @adriencaccia
24+
- Bump instrument-hooks (#119) by @not-matthias in [#119](https://github.com/CodSpeedHQ/pytest-codspeed/pull/119)
25+
26+
827
## [4.5.0] - 2026-04-28
928

1029
### <!-- 7 -->⚙️ Internals

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ version = { attr = "pytest_codspeed.__version__" }
8181

8282

8383
[tool.bumpver]
84-
current_version = "4.5.0"
84+
current_version = "5.0.0"
8585
version_pattern = "MAJOR.MINOR.PATCH[-TAG[NUM]]"
8686
commit_message = "Release v{new_version} 🚀"
8787
tag_message = "Release v{new_version} 🚀"

src/pytest_codspeed/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
__version__ = "4.5.0"
1+
__version__ = "5.0.0"
22
# We also have the semver version since __version__ is not semver compliant
3-
__semver_version__ = "4.5.0"
3+
__semver_version__ = "5.0.0"
44

55
from .plugin import BenchmarkFixture
66

0 commit comments

Comments
 (0)