bump version patch

This commit is contained in:
Sergiu Deitsch 2024-08-02 21:53:11 +02:00
parent 175b54d4fa
commit 6d92a2e5a1
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.22)
project (glog
VERSION 0.7.1
VERSION 0.7.2
DESCRIPTION "C++ implementation of the Google logging module"
HOMEPAGE_URL https://github.com/google/glog
LANGUAGES CXX

View File

@ -8,7 +8,7 @@ find_package` to build against glog in your CMake project as follows:
cmake_minimum_required (VERSION 3.16)
project (myproj VERSION 1.0)
find_package (glog 0.7.1 REQUIRED)
find_package (glog 0.7.2 REQUIRED)
add_executable (myapp main.cpp)
target_link_libraries (myapp glog::glog)