From e370cd51661892cb3bd5ba80541d0739c0d219b4 Mon Sep 17 00:00:00 2001 From: Sergiu Deitsch Date: Sat, 13 Feb 2021 12:23:32 +0100 Subject: [PATCH] bump version --- CMakeLists.txt | 2 +- README.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c3fb56c..7649b2b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ if (POLICY CMP0063) cmake_policy (SET CMP0063 NEW) endif (POLICY CMP0063) -project(glog VERSION 0.4.0 LANGUAGES C CXX) +project(glog VERSION 0.5.0 LANGUAGES C CXX) set (CPACK_PACKAGE_NAME glog) set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "") diff --git a/README.rst b/README.rst index a7c5929..56c1f6f 100644 --- a/README.rst +++ b/README.rst @@ -138,7 +138,7 @@ If you have glog installed in your system, you can use the CMake command cmake_minimum_required (VERSION 3.0.2) project (myproj VERSION 1.0) - find_package (glog 0.4.0 REQUIRED) + find_package (glog 0.5.0 REQUIRED) add_executable (myapp main.cpp) target_link_libraries (myapp glog::glog)