Skip to content

Commit a24abfe

Browse files
committed
Release v4.3.0 πŸš€
1 parent 748f2dd commit a24abfe

3 files changed

Lines changed: 23 additions & 3 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

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

66

77

8+
## [4.3.0] - 2026-02-09
9+
10+
### <!-- 0 -->πŸš€ Features
11+
- Add .gitignore to .codspeed folder on creation (#107) by @art049 in [#107](https://github.com/CodSpeedHQ/pytest-codspeed/pull/107)
12+
- Support memory profiling by @not-matthias
13+
- Rename instrumentation to simulation by @GuillaumeLagrange in [#98](https://github.com/CodSpeedHQ/pytest-codspeed/pull/98)
14+
- Improve time unit display in local walltime by @adriencaccia
15+
16+
### <!-- 1 -->πŸ› Bug Fixes
17+
- Switch to OIDC token by @not-matthias
18+
19+
### <!-- 7 -->βš™οΈ Internals
20+
- Use github runner instead of buildjet by @art049
21+
- Enable memory profiling by @not-matthias in [#103](https://github.com/CodSpeedHQ/pytest-codspeed/pull/103)
22+
- Pin python to 3.14.2 in CI to prevent walltime crashes by @GuillaumeLagrange in [#105](https://github.com/CodSpeedHQ/pytest-codspeed/pull/105)
23+
- Add comment about uv pinning by @GuillaumeLagrange
24+
- Add comment to explain results storing in .codspeed folder by @adriencaccia in [#97](https://github.com/CodSpeedHQ/pytest-codspeed/pull/97)
25+
- Add 3.14 to the list of supported python versions by @adriencaccia
26+
27+
828
## [4.2.0] - 2025-10-24
929

1030
### <!-- 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.2.0"
80+
current_version = "4.3.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.2.0"
1+
__version__ = "4.3.0"
22
# We also have the semver version since __version__ is not semver compliant
3-
__semver_version__ = "4.2.0"
3+
__semver_version__ = "4.3.0"
44

55
from .plugin import BenchmarkFixture
66

0 commit comments

Comments
Β (0)