diff --git a/CMakeLists.txt b/CMakeLists.txt index f46d65a..e684cb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(sparql-parser-base VERSION 0.3.3) +project(sparql-parser-base VERSION 0.3.4) include(cmake/boilerplate_init.cmake) boilerplate_init() diff --git a/README.md b/README.md index b686bc1..cada8f2 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.3 +sparql-parser-base/0.3.4 ``` 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.3 + GIT_TAG 0.3.4 GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(sparql-parser-base)