Skip to content

Commit b5e43b3

Browse files
committed
Bumped version
1 parent 001f4c7 commit b5e43b3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

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-
## v1.0.0
3+
## v1.0
44
- **Removed Deprecated Header Files**: All legacy `.h` forwarding headers (e.g., `perfcpp/sampler.h`, `perfcpp/event_counter.h`) have been removed. Use `.hpp` files instead.
55
- **Richer Branch Stack Entries**: Each entry in a branch stack sample can now carry additional hardware-reported metadata (see the [sampling documentation](https://jmuehlig.github.io/perf-cpp/sampling/#branch-stack)):
66
- **Classification** (Linux 4.15+): the type of branch instruction, i.e., conditional, unconditional, call, return, syscall, and more.

docs/build.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
```bash
66
git clone https://github.com/jmuehlig/perf-cpp.git
77
cd perf-cpp
8-
git checkout v1.0-dev
8+
git checkout v1.0
99
cmake . -B build
1010
cmake --build build
1111
```
@@ -49,7 +49,7 @@ include(FetchContent)
4949
FetchContent_Declare(
5050
perf-cpp-external
5151
GIT_REPOSITORY "https://github.com/jmuehlig/perf-cpp"
52-
GIT_TAG "v1.0-dev"
52+
GIT_TAG "v1.0"
5353
)
5454
FetchContent_MakeAvailable(perf-cpp-external)
5555
```
@@ -67,7 +67,7 @@ include(ExternalProject)
6767
ExternalProject_Add(
6868
perf-cpp-external
6969
GIT_REPOSITORY "https://github.com/jmuehlig/perf-cpp"
70-
GIT_TAG "v1.0-dev"
70+
GIT_TAG "v1.0"
7171
PREFIX "lib/perf-cpp"
7272
INSTALL_COMMAND cmake -E echo ""
7373
)

0 commit comments

Comments
 (0)