Skip to content

Commit 3633f76

Browse files
dylib: bump version from 3.0.0 to 3.0.1
Signed-off-by: Martin Olivier <martin.olivier@live.fr>
1 parent 9c3b566 commit 3633f76

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_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

55
if(NOT "${CMAKE_CXX_STANDARD}")
66
set(CMAKE_CXX_STANDARD 11)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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)
4141
FetchContent_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
4747
FetchContent_MakeAvailable(dylib)

example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include(FetchContent)
1515
FetchContent_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

2121
FetchContent_MakeAvailable(dylib)

example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You will have the following result:
3434

3535
```sh
3636
Hello World!
37-
dylib - v3.0.0
37+
dylib - v3.0.1
3838
pi value: 3.14159
3939
magic value: cafebabe
4040
10 + 10 = 20

example/lib.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

include/dylib.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
*

0 commit comments

Comments
 (0)