Skip to content

Commit

Permalink
Release v3.2.0 πŸš€
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Jan 31, 2025
1 parent 4333c1f commit 253b1be
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@



## [3.2.0] - 2025-01-31

### <!-- 0 -->πŸš€ Features
- Increase the min round time to a bigger value (+/- 1ms) by @art049
- Add benchmarks-walltime job to run additional performance benchmarks by @art049 in [#65](https://github.com/CodSpeedHQ/pytest-codspeed/pull/65)
- Fix the random seed while measuring with instruments by @art049 in [#48](https://github.com/CodSpeedHQ/pytest-codspeed/pull/48)

### <!-- 1 -->πŸ› Bug Fixes
- Use time per iteration instead of total round time in stats by @art049

### <!-- 2 -->πŸ—οΈ Refactor
- Replace hardcoded outlier factor for improved readability by @art049 in [#67](https://github.com/CodSpeedHQ/pytest-codspeed/pull/67)

### <!-- 7 -->βš™οΈ Internals
- Fix self-dependency by @adriencaccia in [#66](https://github.com/CodSpeedHQ/pytest-codspeed/pull/66)
- Fix uv version in CI by @adriencaccia


## [3.1.2] - 2025-01-09

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


[3.2.0]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.2..v3.2.0
[3.1.2]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.1..v3.1.2
[3.1.1]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.0..v3.1.1
[3.1.0]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.0-beta..v3.1.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ version = { attr = "pytest_codspeed.__version__" }


[tool.bumpver]
current_version = "3.1.2"
current_version = "3.2.0"
version_pattern = "MAJOR.MINOR.PATCH[-TAG[NUM]]"
commit_message = "Release v{new_version} πŸš€"
tag_message = "Release v{new_version} πŸš€"
Expand Down
4 changes: 2 additions & 2 deletions src/pytest_codspeed/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__version__ = "3.1.2"
__version__ = "3.2.0"
# We also have the semver version since __version__ is not semver compliant
__semver_version__ = "3.1.2"
__semver_version__ = "3.2.0"

from .plugin import BenchmarkFixture

Expand Down

0 comments on commit 253b1be

Please # to comment.