Skip to content

Commit 3b1a30c

Browse files
committed
Release v3.1.0 πŸš€
1 parent ad1d411 commit 3b1a30c

File tree

4 files changed

+30
-29
lines changed

4 files changed

+30
-29
lines changed

β€ŽCHANGELOG.md

Lines changed: 26 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,36 @@
55

66

77

8-
## [Unreleased]
8+
## [3.1.0] - 2024-12-09
9+
10+
### <!-- 2 -->πŸ—οΈ Refactor
11+
- Remove the scripted semver generation by @art049
12+
13+
### <!-- 7 -->βš™οΈ Internals
14+
- Fix typo in cibuildwheel config by @art049 in [#57](https://github.com/CodSpeedHQ/pytest-codspeed/pull/57)
15+
16+
17+
## [3.1.0-beta] - 2024-12-06
918

1019
### <!-- 0 -->πŸš€ Features
11-
- Check buildability and fallback when build doesn't work
12-
- Compile the callgrind wrapper at build time
20+
- Check buildability and fallback when build doesn't work by @art049
21+
- Compile the callgrind wrapper at build time by @art049
1322

1423
### <!-- 1 -->πŸ› Bug Fixes
15-
- Allow build on arm64
24+
- Allow build on arm64 by @art049
1625

1726
### <!-- 7 -->βš™οΈ Internals
18-
- Define the version from the pyproject.toml
19-
- Force native extension build in CI
20-
- Updated matrix release workflow
21-
- Use a common python version in the codspeed job
22-
- Fix the codspeed workflow
23-
- Use uv in CI
24-
- Uv lock
27+
- Build wheels with cibuildwheel by @art049
28+
- Allow forcing integrated tests by @art049
29+
- Fix release script by @art049
30+
- Use bumpver to manage versions by @art049
31+
- Add a changelog by @art049
32+
- Force native extension build in CI by @art049
33+
- Updated matrix release workflow by @art049
34+
- Use a common python version in the codspeed job by @art049
35+
- Fix the codspeed workflow by @art049
36+
- Use uv in CI by @art049
37+
- Commit uv lock file by @art049
2538

2639

2740
## [3.0.0] - 2024-10-29
@@ -229,7 +242,8 @@
229242
- Add a CI configuration with pytest-benchmark installed by @art049
230243

231244

232-
[unreleased]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0..HEAD
245+
[3.1.0]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.0-beta..v3.1.0
246+
[3.1.0-beta]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0..v3.1.0-beta
233247
[3.0.0]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0b4..v3.0.0
234248
[3.0.0b4]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0b3..v3.0.0b4
235249
[3.0.0b3]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0b2..v3.0.0b3

β€Žpyproject.toml

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

6161

6262
[tool.bumpver]
63-
current_version = "3.1.0-beta"
63+
current_version = "3.1.0"
6464
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
6565
commit_message = "Release v{new_version} πŸš€"
6666
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.0b0"
1+
__version__ = "3.1.0"
22
# We also have the semver version since __version__ is not semver compliant
3-
__semver_version__ = "3.1.0-beta"
3+
__semver_version__ = "3.1.0"
44

55
from .plugin import BenchmarkFixture
66

β€Žuv.lock

Lines changed: 1 addition & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)