Skip to content

Commit 74051bb

Browse files
committed
Bump to v1.0.0
1 parent bfe123d commit 74051bb

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set(package_name "cpptrace")
99

1010
project(
1111
cpptrace
12-
VERSION 0.8.3
12+
VERSION 1.0.0
1313
DESCRIPTION "Simple, portable, and self-contained stacktrace library for C++11 and newer "
1414
HOMEPAGE_URL "https://github.com/jeremy-rifkin/cpptrace"
1515
LANGUAGES C CXX

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ include(FetchContent)
155155
FetchContent_Declare(
156156
cpptrace
157157
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
158-
GIT_TAG v0.8.3 # <HASH or TAG>
158+
GIT_TAG v1.0.0 # <HASH or TAG>
159159
)
160160
FetchContent_MakeAvailable(cpptrace)
161161
target_link_libraries(your_target cpptrace::cpptrace)
@@ -1269,7 +1269,7 @@ include(FetchContent)
12691269
FetchContent_Declare(
12701270
cpptrace
12711271
GIT_REPOSITORY https://github.com/jeremy-rifkin/cpptrace.git
1272-
GIT_TAG v0.8.3 # <HASH or TAG>
1272+
GIT_TAG v1.0.0 # <HASH or TAG>
12731273
)
12741274
FetchContent_MakeAvailable(cpptrace)
12751275
target_link_libraries(your_target cpptrace::cpptrace)
@@ -1285,7 +1285,7 @@ information.
12851285

12861286
```sh
12871287
git clone https://github.com/jeremy-rifkin/cpptrace.git
1288-
git checkout v0.8.3
1288+
git checkout v1.0.0
12891289
mkdir cpptrace/build
12901290
cd cpptrace/build
12911291
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1328,7 +1328,7 @@ you when installing new libraries.
13281328
13291329
```ps1
13301330
git clone https://github.com/jeremy-rifkin/cpptrace.git
1331-
git checkout v0.8.3
1331+
git checkout v1.0.0
13321332
mkdir cpptrace/build
13331333
cd cpptrace/build
13341334
cmake .. -DCMAKE_BUILD_TYPE=Release
@@ -1346,7 +1346,7 @@ To install just for the local user (or any custom prefix):
13461346

13471347
```sh
13481348
git clone https://github.com/jeremy-rifkin/cpptrace.git
1349-
git checkout v0.8.3
1349+
git checkout v1.0.0
13501350
mkdir cpptrace/build
13511351
cd cpptrace/build
13521352
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$HOME/wherever
@@ -1429,7 +1429,7 @@ make install
14291429
cd ~/scratch/cpptrace-test
14301430
git clone https://github.com/jeremy-rifkin/cpptrace.git
14311431
cd cpptrace
1432-
git checkout v0.8.3
1432+
git checkout v1.0.0
14331433
mkdir build
14341434
cd build
14351435
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=On -DCPPTRACE_USE_EXTERNAL_LIBDWARF=On -DCMAKE_PREFIX_PATH=~/scratch/cpptrace-test/resources -DCMAKE_INSTALL_PREFIX=~/scratch/cpptrace-test/resources
@@ -1449,7 +1449,7 @@ cpptrace and its dependencies.
14491449
Cpptrace is available through conan at https://conan.io/center/recipes/cpptrace.
14501450
```
14511451
[requires]
1452-
cpptrace/0.8.3
1452+
cpptrace/1.0.0
14531453
[generators]
14541454
CMakeDeps
14551455
CMakeToolchain

0 commit comments

Comments
 (0)