Skip to content

Commit 547dd8b

Browse files
committed
Changed version to v0.11.0.
1 parent 65ba90c commit 547dd8b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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.11.0 (in progress)
3+
## v0.11.0
44
This version rolls out a redesigned sampling API.
55
Recorded data are now grouped into dedicated sub-structures (such as `Metadata`, `InstructionExecution`, and `DataAccess`) inside `perf::Sample` (see the [documentation](docs/sampling.md#what-can-be-recorded-and-how-to-access-the-data)).
66

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The key features include:
1313
* **[Specify Hardware Events](docs/counters.md)**: Mix built-in events (e.g., *cycles*, *instructions*, *cache-misses*, ...) with events specific to the underlying hardware.
1414
* **[Practical Examples](examples/README.md)** and **[Detailed Documentation](#documentation)**: Quickly get started with ready-to-use examples demonstrating diverse, real-world applications.
1515

16-
**perf-cpp** extends the standard [*perf subsystem*'s](https://man7.org/linux/man-pages/man2/perf_event_open.2.html) capabilities, such as leveraging AMD IBS features to expose rich, CPU-specific data unavailable through the standard `perf_event_open` interface.
16+
**perf-cpp** extends the standard [*perf subsystem*'s](https://man7.org/linux/man-pages/man2/perf_event_open.2.html) capabilities, such as leveraging AMD IBS features to expose rich, CPU-specific data unavailable through the `perf_event_open` interface.
1717

1818
## Examples
1919
### Record Hardware Event Statistics
@@ -122,7 +122,7 @@ git clone https://github.com/jmuehlig/perf-cpp.git
122122
cd perf-cpp
123123

124124
# Optional: Switch to the latest stable version
125-
git checkout v0.11-dev
125+
git checkout v0.11.0
126126

127127
# Build the library (in build/)
128128
# Note: -DBUILD_EXAMPLES=1 can be used to compile examples

docs/build.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ git clone https://github.com/jmuehlig/perf-cpp.git
2525
cd perf-cpp
2626

2727
# Optional: switch to latest stable version
28-
git checkout v0.11-dev
28+
git checkout v0.11.0
2929
```
3030

3131
#### Generate the Makefile and Build
@@ -84,7 +84,7 @@ include(ExternalProject)
8484
ExternalProject_Add(
8585
perf-cpp-external
8686
GIT_REPOSITORY "https://github.com/jmuehlig/perf-cpp"
87-
GIT_TAG "v0.11-dev"
87+
GIT_TAG "v0.11.0"
8888
PREFIX "lib/perf-cpp"
8989
INSTALL_COMMAND cmake -E echo ""
9090
)
@@ -102,7 +102,7 @@ include(FetchContent)
102102
FetchContent_Declare(
103103
perf-cpp-external
104104
GIT_REPOSITORY "https://github.com/jmuehlig/perf-cpp"
105-
GIT_TAG "v0.11-dev"
105+
GIT_TAG "v0.11.0"
106106
)
107107
FetchContent_MakeAvailable(perf-cpp-external)
108108
```

0 commit comments

Comments
 (0)