From 744dca0f3d6b3e295a16fcf6af592e5cb5b314dc Mon Sep 17 00:00:00 2001 From: Alexander Bigerl Date: Tue, 28 Feb 2023 11:29:53 +0100 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 dbce103..25ebb3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(sparql-parser-base VERSION 0.3.2) +project(sparql-parser-base VERSION 0.3.3) include(cmake/boilerplate_init.cmake) boilerplate_init() diff --git a/README.md b/README.md index 0f6b4e2..919990f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ To use sparql-parser-base, add it to your `conanfile.txt`: ``` [requires] -sparql-parser-base/0.3.2 +sparql-parser-base/0.3.3 ``` If you want to use SPARQL 1.0 instead, add `sparql-parser-base:sparql_version=1.0` to the `[options]` section of your @@ -42,7 +42,7 @@ include(FetchContent) FetchContent_Declare( sparql-parser-base GIT_REPOSITORY "${CMAKE_CURRENT_SOURCE_DIR}/../" - GIT_TAG 0.3.2 + GIT_TAG 0.3.3 GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(sparql-parser-base)