Skip to content

Commit 1ed647a

Browse files
committed
chore: Release v2.2.0
1 parent c856e49 commit 1ed647a

4 files changed

Lines changed: 21 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@
55

66

77

8+
## [2.2.0] - 2026-04-17
9+
10+
### <!-- 0 -->🚀 Features
11+
- Add toolchain environment collection to bazel
12+
- Add toolchain environment collection to CMake build
13+
14+
### <!-- 1 -->🐛 Bug Fixes
15+
- Use slugged name for environment section
16+
- Fix clang 19 compilation error
17+
18+
### <!-- 7 -->⚙️ Internals
19+
- Bump instrument-hooks to collect runtime libraries
20+
- Use the same logic for toolchain detection
21+
- Stop targeting our fork for BCR PR (#43)
22+
23+
824
## [2.1.0] - 2026-01-21
925

1026
### <!-- 0 -->🚀 Features
@@ -202,6 +218,7 @@
202218
- Import google benchmark "fork"
203219

204220

221+
[2.2.0]: https://github.com/CodSpeedHQ/runner/compare/v2.1.0..v2.2.0
205222
[2.1.0]: https://github.com/CodSpeedHQ/runner/compare/v2.0.0..v2.1.0
206223
[2.0.0]: https://github.com/CodSpeedHQ/runner/compare/v1.4.1..v2.0.0
207224
[1.4.1]: https://github.com/CodSpeedHQ/runner/compare/v1.4.0..v1.4.1

core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.10)
22

3-
set(CODSPEED_VERSION 2.1.0)
3+
set(CODSPEED_VERSION 2.2.0)
44

55
project(codspeed VERSION ${CODSPEED_VERSION} LANGUAGES CXX C)
66

core/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "codspeed_core",
3-
version = "2.1.0",
3+
version = "2.2.0",
44
)
55

66
bazel_dep(name = "rules_cc", version = "0.0.17")

google_benchmark/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module(
22
name = "codspeed_google_benchmark_compat",
3-
version = "2.1.0",
3+
version = "2.2.0",
44
)
55

6-
bazel_dep(name = "codspeed_core", version = "2.1.0")
6+
bazel_dep(name = "codspeed_core", version = "2.2.0")
77
bazel_dep(name = "bazel_skylib", version = "1.7.1")
88
bazel_dep(name = "platforms", version = "0.0.10")
99
bazel_dep(name = "rules_cc", version = "0.0.9")

0 commit comments

Comments
 (0)