Skip to content

Commit f77a8db

Browse files
committed
Added changelog and set version to v0.11.1
1 parent fa23272 commit f77a8db

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# *perf-cpp*: Changelog
22

3+
## v0.11.1
4+
- Unified the behaviour of the `time` and `timestamp` fields in the sampling API, removing discrepancies between the two.
5+
36
## v0.11.0
47
This version rolls out a redesigned sampling API.
58
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)).

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10)
2-
project(libperf-cpp VERSION 0.10.0 LANGUAGES CXX)
2+
project(libperf-cpp VERSION 0.11.1 LANGUAGES CXX)
33

44
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic -Wconversion -Wcast-align -Wunused -Wshadow -Wold-style-cast -Wpointer-arith -Wcast-qual -Wno-missing-braces")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.0
125+
git checkout v0.11.1
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.0
28+
git checkout v0.11.1
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.0"
87+
GIT_TAG "v0.11.1"
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.0"
105+
GIT_TAG "v0.11.1"
106106
)
107107
FetchContent_MakeAvailable(perf-cpp-external)
108108
```

0 commit comments

Comments
 (0)