From df2f56c164b1a76c66b2c8ebeba9abce3ca36995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=BChlig?= Date: Thu, 5 Dec 2024 04:45:55 +0100 Subject: [PATCH] Changed version to v0.9.0 --- CHANGELOG.md | 2 +- README.md | 2 +- docs/build.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e920a2..d9b56ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # *perf-cpp*: Changelog -## v.0.9.0 (WIP) +## v.0.9.0 * Removed deprecated warnings about the sampling interface (and the *old* sampling interface). * New feature: Access interim results from counters without stopping the counter using [live counters](docs/recording-live-events.md). * New feature: Sampling the user stack (see the [documentation](docs/sampling.md#user-stack)). diff --git a/README.md b/README.md index 0fe8c0b..1fb9579 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ git clone https://github.com/jmuehlig/perf-cpp.git cd perf-cpp # Optional: Switch to the latest stable version -git checkout v0.8.3 +git checkout v0.9.0 # Build the library (in build/) cmake . -B build -DBUILD_EXAMPLES=1 diff --git a/docs/build.md b/docs/build.md index 31efb2a..6dc7cfb 100644 --- a/docs/build.md +++ b/docs/build.md @@ -25,7 +25,7 @@ git clone https://github.com/jmuehlig/perf-cpp.git cd perf-cpp # Optional: switch to latest stable version -git checkout v0.8.3 +git checkout v0.9.0 ``` #### Generate the Makefile and Build @@ -84,7 +84,7 @@ include(ExternalProject) ExternalProject_Add( perf-cpp-external GIT_REPOSITORY "https://github.com/jmuehlig/perf-cpp" - GIT_TAG "v0.8.3" + GIT_TAG "v0.9.0" PREFIX "lib/perf-cpp" INSTALL_COMMAND cmake -E echo "" ) @@ -102,7 +102,7 @@ include(FetchContent) FetchContent_Declare( perf-cpp-external GIT_REPOSITORY "https://github.com/jmuehlig/perf-cpp" - GIT_TAG "v0.8.3" + GIT_TAG "v0.9.0" ) FetchContent_MakeAvailable(perf-cpp-external) ```