Skip to content

Commit

Permalink
Changed version to v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuehlig committed Dec 5, 2024
1 parent 2466929 commit df2f56c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 ""
)
Expand All @@ -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)
```
Expand Down

0 comments on commit df2f56c

Please sign in to comment.