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 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
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
Original file line number Diff line number Diff 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 "
7070version_pattern = " MAJOR.MINOR.PATCH[-TAG[NUM]]"
7171commit_message = " Release v{new_version} 🚀"
7272tag_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 "
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
55from .plugin import BenchmarkFixture
66
You can’t perform that action at this time.
0 commit comments