File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
7
7
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
+
8
26
## [ 3.1.2] - 2025-01-09
9
27
10
28
### <!-- 1 --> π Bug Fixes
256
274
- Add a CI configuration with pytest-benchmark installed by @art049
257
275
258
276
277
+ [ 3.2.0 ] : https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.2..v3.2.0
259
278
[ 3.1.2 ] : https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.1..v3.1.2
260
279
[ 3.1.1 ] : https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.0..v3.1.1
261
280
[ 3.1.0 ] : https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.0-beta..v3.1.0
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ version = { attr = "pytest_codspeed.__version__" }
66
66
67
67
68
68
[tool .bumpver ]
69
- current_version = " 3.1.2 "
69
+ current_version = " 3.2.0 "
70
70
version_pattern = " MAJOR.MINOR.PATCH[-TAG[NUM]]"
71
71
commit_message = " Release v{new_version} π"
72
72
tag_message = " Release v{new_version} π"
Original file line number Diff line number Diff line change 1
- __version__ = "3.1.2 "
1
+ __version__ = "3.2.0 "
2
2
# We also have the semver version since __version__ is not semver compliant
3
- __semver_version__ = "3.1.2 "
3
+ __semver_version__ = "3.2.0 "
4
4
5
5
from .plugin import BenchmarkFixture
6
6
You canβt perform that action at this time.
0 commit comments