From 161f9be5e5835c75f5d5497735d2f49f80cbf483 Mon Sep 17 00:00:00 2001 From: Liss Heidrich <31625940+Clueliss@users.noreply.github.com> Date: Mon, 8 Jul 2024 11:37:12 +0200 Subject: [PATCH] version bump --- CMakeLists.txt | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 26d93f8..2d29dfc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(sparql-parser-base VERSION 0.3.6) +project(sparql-parser-base VERSION 0.3.7) include(cmake/boilerplate_init.cmake) boilerplate_init() diff --git a/README.md b/README.md index aa60dc6..4ab4d32 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To use sparql-parser-base, add it to your `conanfile.txt`: ``` [requires] -sparql-parser-base/0.3.6 +sparql-parser-base/0.3.7 ``` ### With FetchContent @@ -38,7 +38,7 @@ include(FetchContent) FetchContent_Declare( sparql-parser-base GIT_REPOSITORY "${CMAKE_CURRENT_SOURCE_DIR}/../" - GIT_TAG 0.3.6 + GIT_TAG 0.3.7 GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(sparql-parser-base)