diff --git a/CMakeLists.txt b/CMakeLists.txt index 3960aa7..dfc4f4b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ option(QUERYOSITY_EXAMPLES "Examples" OFF) set(QUERYOSITY_INCLUDE_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/include) set(QUERYOSITY_MAJOR_VERSION 0) set(QUERYOSITY_MINOR_VERSION 4) -set(QUERYOSITY_PATCH_VERSION 0) +set(QUERYOSITY_PATCH_VERSION 1) set(QUERYOSITY_VERSION ${QUERYOSITY_MAJOR_VERSION}.${QUERYOSITY_MINOR_VERSION}.${QUERYOSITY_PATCH_VERSION} ) diff --git a/README.md b/README.md index 2eaf59f..8d42082 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Queryosity -![Version](https://img.shields.io/badge/Version-0.4.0-blue.svg) +![Version](https://img.shields.io/badge/Version-0.4.1-blue.svg) ![C++ Standard](https://img.shields.io/badge/C++-17-blue.svg) [![Ubuntu](https://github.com/taehyounpark/analogical/actions/workflows/ubuntu.yml/badge.svg?branch=master)](https://github.com/taehyounpark/analogical/actions/workflows/ubuntu.yml) [![macOS](https://github.com/taehyounpark/analogical/actions/workflows/macos.yml/badge.svg?branch=master)](https://github.com/taehyounpark/analogical/actions/workflows/macos.yml) @@ -85,7 +85,7 @@ cmake --build . cmake --install . ``` ```cmake -find_package(queryosity 0.4.0 REQUIRED) +find_package(queryosity 0.4.1 REQUIRED) ... add_library(Analysis ...) ... diff --git a/docs/pages/install.md b/docs/pages/install.md index 96dcbff..e2c9943 100644 --- a/docs/pages/install.md +++ b/docs/pages/install.md @@ -36,7 +36,7 @@ cmake --install . ~~~ ~~~{.cmake} -find_package(queryosity 0.4.0 REQUIRED) +find_package(queryosity 0.4.1 REQUIRED) ... add_library(MyAnalysis ...) ...