Skip to content

Commit d9d86d4

Browse files
committed
Bumped version to v0.13.0
1 parent 15c98a6 commit d9d86d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# *perf-cpp*: Changelog
22

3-
## v0.13.0 (WIP)
3+
## v0.13.0
44
- **Header Restructuring**: Headers have been reorganized into `counter/`, `sample/`, `metric/`, `analyzer/`, and `util/` subdirectories and renamed from `.h` to `.hpp`. The previous `.h` headers remain as forwarding includes with deprecation notices and will be removed in v1.0.
55
- **Breaking**: `EventCounter::add()` and `start()` (including `Sampler::start()` and all multi-thread/core variants) now return `void` instead of `bool`. Errors are communicated via exceptions; the return values were unused.
66
- **Compile Flag for AUX Buffer Support**: Added `PERFCPP_NO_SAMPLE_AUX` compile flag to disable auxiliary buffer sampling on systems with Linux kernels older than 5.5 that lack `PERF_SAMPLE_AUX` support. Thanks to [@rconnorlawson](https://github.com/rconnorlawson).

docs/build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ include(FetchContent)
4646
FetchContent_Declare(
4747
perf-cpp-external
4848
GIT_REPOSITORY "https://github.com/jmuehlig/perf-cpp"
49-
GIT_TAG "v0.13-dev"
49+
GIT_TAG "v0.13.0"
5050
)
5151
FetchContent_MakeAvailable(perf-cpp-external)
5252
```
@@ -60,7 +60,7 @@ include(ExternalProject)
6060
ExternalProject_Add(
6161
perf-cpp-external
6262
GIT_REPOSITORY "https://github.com/jmuehlig/perf-cpp"
63-
GIT_TAG "v0.13-dev"
63+
GIT_TAG "v0.13.0"
6464
PREFIX "lib/perf-cpp"
6565
INSTALL_COMMAND cmake -E echo ""
6666
)

0 commit comments

Comments
 (0)