Skip to content

Commit 34048c7

Browse files
committed
Release v4.4.0 πŸš€
1 parent bf7bd37 commit 34048c7

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

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

66

77

8+
## [4.4.0] - 2026-04-14
9+
10+
### <!-- 0 -->πŸš€ Features
11+
- Collect Python toolchain information via instrument hooks environment API by @GuillaumeLagrange in [#108](https://github.com/CodSpeedHQ/pytest-codspeed/pull/108)
12+
13+
### <!-- 1 -->πŸ› Bug Fixes
14+
- Exclude setup time from benchmark in walltime mode (#114) by @toby-coleman in [#114](https://github.com/CodSpeedHQ/pytest-codspeed/pull/114)
15+
- Fix segfault caused by multiple activate_stack_trampoline by @GuillaumeLagrange
16+
17+
### <!-- 7 -->βš™οΈ Internals
18+
- Bump the python pinned python version by @GuillaumeLagrange in [#109](https://github.com/CodSpeedHQ/pytest-codspeed/pull/109)
19+
- Add CONTRIBUTING.md by @adriencaccia
20+
21+
822
## [4.3.0] - 2026-02-09
923

1024
### <!-- 0 -->πŸš€ Features

β€Žpyproject.tomlβ€Ž

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

7878

7979
[tool.bumpver]
80-
current_version = "4.3.0"
80+
current_version = "4.4.0"
8181
version_pattern = "MAJOR.MINOR.PATCH[-TAG[NUM]]"
8282
commit_message = "Release v{new_version} πŸš€"
8383
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.3.0"
1+
__version__ = "4.4.0"
22
# We also have the semver version since __version__ is not semver compliant
3-
__semver_version__ = "4.3.0"
3+
__semver_version__ = "4.4.0"
44

55
from .plugin import BenchmarkFixture
66

0 commit comments

Comments
Β (0)