File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.11...3.31 )
22
3- project (dylib VERSION 3.0.0 LANGUAGES CXX )
3+ project (dylib VERSION 3.0.1 LANGUAGES CXX )
44
55if (NOT "${CMAKE_CXX_STANDARD } " )
66 set (CMAKE_CXX_STANDARD 11)
Original file line number Diff line number Diff line change 11# dylib
22
3- [ ![ version] ( https://img.shields.io/badge/Version-3.0.0 -blue.svg )] ( https://github.com/martin-olivier/dylib/releases/tag/v3.0.0 )
3+ [ ![ version] ( https://img.shields.io/badge/Version-3.0.1 -blue.svg )] ( https://github.com/martin-olivier/dylib/releases/tag/v3.0.1 )
44[ ![ license] ( https://img.shields.io/badge/License-MIT-orange.svg )] ( https://github.com/martin-olivier/dylib/blob/main/LICENSE )
55[ ![ cpp] ( https://img.shields.io/badge/Compatibility-C++11-darkgreen.svg )] ( https://isocpp.org )
66[ ![ ci] ( https://github.com/martin-olivier/dylib/actions/workflows/CI.yml/badge.svg )] ( https://github.com/martin-olivier/dylib/actions/workflows/CI.yml )
@@ -28,7 +28,7 @@ vcpkg install dylib
2828```
2929
3030``` sh
31- conan install --requires=dylib/3.0.0
31+ conan install --requires=dylib/3.0.1
3232```
3333
3434### Using CMake Fetch
@@ -41,7 +41,7 @@ include(FetchContent)
4141FetchContent_Declare(
4242 dylib
4343 GIT_REPOSITORY "https://github.com/martin-olivier/dylib"
44- GIT_TAG "v3.0.0 "
44+ GIT_TAG "v3.0.1 "
4545)
4646
4747FetchContent_MakeAvailable(dylib)
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ include(FetchContent)
1515FetchContent_Declare (
1616 dylib
1717 GIT_REPOSITORY "https://github.com/martin-olivier/dylib"
18- GIT_TAG "v3.0.0 "
18+ GIT_TAG "v3.0.1 "
1919)
2020
2121FetchContent_MakeAvailable (dylib)
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ You will have the following result:
3434
3535``` sh
3636Hello World!
37- dylib - v3.0.0
37+ dylib - v3.0.1
3838pi value: 3.14159
3939magic value: cafebabe
404010 + 10 = 20
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ namespace example {
2626
2727 namespace dylib {
2828 LIB_EXPORT std::string info () {
29- return " dylib - v3.0.0 " ;
29+ return " dylib - v3.0.1 " ;
3030 }
3131 }
3232
Original file line number Diff line number Diff line change 11/* *
22 * @file dylib.hpp
3- * @version 3.0.0
3+ * @version 3.0.1
44 * @brief C++ cross-platform wrapper around dynamic loading of shared libraries
55 * @link https://github.com/martin-olivier/dylib
66 *
You can’t perform that action at this time.
0 commit comments