diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a81fbb2..f640d127 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ if(NOT CMAKE_BUILD_TYPE) endif() project(paimon - VERSION 0.1.0 + VERSION 0.1.1 DESCRIPTION "Paimon C++ Project") string(TOUPPER "${CMAKE_BUILD_TYPE}" UPPERCASE_BUILD_TYPE) @@ -52,8 +52,8 @@ option(PAIMON_ENABLE_AVRO "Whether to enable avro file format" ON) option(PAIMON_ENABLE_ORC "Whether to enable orc file format" ON) option(PAIMON_ENABLE_LANCE "Whether to enable lance file format" OFF) option(PAIMON_ENABLE_JINDO "Whether to enable jindo file system" OFF) -option(PAIMON_ENABLE_LUMINA "Whether to enable lumina vector index" ON) -option(PAIMON_ENABLE_LUCENE "Whether to enable lucene index" ON) +option(PAIMON_ENABLE_LUMINA "Whether to enable lumina vector index" OFF) +option(PAIMON_ENABLE_LUCENE "Whether to enable lucene index" OFF) if(PAIMON_ENABLE_ORC) add_definitions(-DPAIMON_ENABLE_ORC) diff --git a/ci/scripts/build_paimon.sh b/ci/scripts/build_paimon.sh index f7771400..5def3757 100755 --- a/ci/scripts/build_paimon.sh +++ b/ci/scripts/build_paimon.sh @@ -31,6 +31,8 @@ CMAKE_ARGS=( "-DPAIMON_BUILD_TESTS=ON" "-DPAIMON_ENABLE_LANCE=ON" "-DPAIMON_ENABLE_JINDO=ON" + "-DPAIMON_ENABLE_LUMINA=ON" + "-DPAIMON_ENABLE_LUCENE=ON" ) if [[ "${enable_sanitizer}" == "true" ]]; then diff --git a/docs/source/conf.py b/docs/source/conf.py index 61951c01..8e575c68 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -113,7 +113,7 @@ # The master toctree document. master_doc = "index" -version = "0.1.0" +version = "0.1.1" html_theme_options = { "show_toc_level": 2,