Skip to content

Commit

Permalink
Release v3.1.0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Dec 9, 2024
1 parent ad1d411 commit 3b1a30c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 29 deletions.
38 changes: 26 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,36 @@



## [Unreleased]
## [3.1.0] - 2024-12-09

### <!-- 2 -->🏗️ Refactor
- Remove the scripted semver generation by @art049

### <!-- 7 -->⚙️ Internals
- Fix typo in cibuildwheel config by @art049 in [#57](https://github.com/CodSpeedHQ/pytest-codspeed/pull/57)


## [3.1.0-beta] - 2024-12-06

### <!-- 0 -->🚀 Features
- Check buildability and fallback when build doesn't work
- Compile the callgrind wrapper at build time
- Check buildability and fallback when build doesn't work by @art049
- Compile the callgrind wrapper at build time by @art049

### <!-- 1 -->🐛 Bug Fixes
- Allow build on arm64
- Allow build on arm64 by @art049

### <!-- 7 -->⚙️ Internals
- Define the version from the pyproject.toml
- Force native extension build in CI
- Updated matrix release workflow
- Use a common python version in the codspeed job
- Fix the codspeed workflow
- Use uv in CI
- Uv lock
- Build wheels with cibuildwheel by @art049
- Allow forcing integrated tests by @art049
- Fix release script by @art049
- Use bumpver to manage versions by @art049
- Add a changelog by @art049
- Force native extension build in CI by @art049
- Updated matrix release workflow by @art049
- Use a common python version in the codspeed job by @art049
- Fix the codspeed workflow by @art049
- Use uv in CI by @art049
- Commit uv lock file by @art049


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


[unreleased]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0..HEAD
[3.1.0]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.1.0-beta..v3.1.0
[3.1.0-beta]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0..v3.1.0-beta
[3.0.0]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0b4..v3.0.0
[3.0.0b4]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0b3..v3.0.0b4
[3.0.0b3]: https://github.com/CodSpeedHQ/pytest-codspeed/compare/v3.0.0b2..v3.0.0b3
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ version = { attr = "pytest_codspeed.__version__" }


[tool.bumpver]
current_version = "3.1.0-beta"
current_version = "3.1.0"
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
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.0b0"
__version__ = "3.1.0"
# We also have the semver version since __version__ is not semver compliant
__semver_version__ = "3.1.0-beta"
__semver_version__ = "3.1.0"

from .plugin import BenchmarkFixture

Expand Down
15 changes: 1 addition & 14 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3b1a30c

Please # to comment.