Skip to content

Commit 253b1be

Browse files
committed
Release v3.2.0 πŸš€
1 parent 4333c1f commit 253b1be

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

β€ŽCHANGELOG.md

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

66

77

8+
## [3.2.0] - 2025-01-31
9+
10+
### <!-- 0 -->πŸš€ Features
11+
- Increase the min round time to a bigger value (+/- 1ms) by @art049
12+
- Add benchmarks-walltime job to run additional performance benchmarks by @art049 in [#65](https://github.com/CodSpeedHQ/pytest-codspeed/pull/65)
13+
- Fix the random seed while measuring with instruments by @art049 in [#48](https://github.com/CodSpeedHQ/pytest-codspeed/pull/48)
14+
15+
### <!-- 1 -->πŸ› Bug Fixes
16+
- Use time per iteration instead of total round time in stats by @art049
17+
18+
### <!-- 2 -->πŸ—οΈ Refactor
19+
- Replace hardcoded outlier factor for improved readability by @art049 in [#67](https://github.com/CodSpeedHQ/pytest-codspeed/pull/67)
20+
21+
### <!-- 7 -->βš™οΈ Internals
22+
- Fix self-dependency by @adriencaccia in [#66](https://github.com/CodSpeedHQ/pytest-codspeed/pull/66)
23+
- Fix uv version in CI by @adriencaccia
24+
25+
826
## [3.1.2] - 2025-01-09
927

1028
### <!-- 1 -->πŸ› Bug Fixes
@@ -256,6 +274,7 @@
256274
- Add a CI configuration with pytest-benchmark installed by @art049
257275

258276

277+
[3.2.0]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.2..v3.2.0
259278
[3.1.2]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.1..v3.1.2
260279
[3.1.1]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.0..v3.1.1
261280
[3.1.0]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.0-beta..v3.1.0

β€Žpyproject.toml

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

6767

6868
[tool.bumpver]
69-
current_version = "3.1.2"
69+
current_version = "3.2.0"
7070
version_pattern = "MAJOR.MINOR.PATCH[-TAG[NUM]]"
7171
commit_message = "Release v{new_version} πŸš€"
7272
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__ = "3.1.2"
1+
__version__ = "3.2.0"
22
# We also have the semver version since __version__ is not semver compliant
3-
__semver_version__ = "3.1.2"
3+
__semver_version__ = "3.2.0"
44

55
from .plugin import BenchmarkFixture
66

0 commit comments

Comments
Β (0)