Skip to content

Commit 0c6dfe6

Browse files
committed
chore: Release vminor
1 parent cebedf1 commit 0c6dfe6

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGELOG.md

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

66

77

8+
## [minor] - 2026-01-21
9+
10+
### <!-- 0 -->🚀 Features
11+
- Add memory benchmark example
12+
- Run memory profiling in CI
13+
- Define shared CODSPEED_MODE_DISPLAY
14+
- Add support for memory mode
15+
16+
### <!-- 1 -->🐛 Bug Fixes
17+
- Skip warmup in memory mode
18+
- Exclude warmup measurements
19+
- Dont start and stop valgrind twice
20+
21+
### <!-- 7 -->⚙️ Internals
22+
- Use OIDC token
23+
- Bump instrument-hooks
24+
- Switch to simulation
25+
- Bump instrument-hooks to support memory profiling
26+
27+
828
## [2.0.0] - 2025-11-21
929

1030
### <!-- 0 -->🚀 Features
@@ -181,6 +201,7 @@
181201
- Import google benchmark "fork"
182202

183203

204+
[minor]: https://github.com/CodSpeedHQ/runner/compare/v2.0.0..vminor
184205
[2.0.0]: https://github.com/CodSpeedHQ/runner/compare/v1.4.1..v2.0.0
185206
[1.4.1]: https://github.com/CodSpeedHQ/runner/compare/v1.4.0..v1.4.1
186207
[1.4.0]: https://github.com/CodSpeedHQ/runner/compare/v1.3.0..v1.4.0

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.0.0)
3+
set(CODSPEED_VERSION minor)
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.0.0",
3+
version = "minor",
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.0.0",
3+
version = "minor",
44
)
55

6-
bazel_dep(name = "codspeed_core", version = "2.0.0")
6+
bazel_dep(name = "codspeed_core", version = "minor")
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)