Skip to content

Commit 11430d8

Browse files
authored
Cherry pick #190 to release 0.1 (#191)
* chore: disable lumina and lucene by default (#190) * chore: update version to v0.1.1
1 parent b54e6ce commit 11430d8

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if(NOT CMAKE_BUILD_TYPE)
3232
endif()
3333

3434
project(paimon
35-
VERSION 0.1.0
35+
VERSION 0.1.1
3636
DESCRIPTION "Paimon C++ Project")
3737

3838
string(TOUPPER "${CMAKE_BUILD_TYPE}" UPPERCASE_BUILD_TYPE)
@@ -52,8 +52,8 @@ option(PAIMON_ENABLE_AVRO "Whether to enable avro file format" ON)
5252
option(PAIMON_ENABLE_ORC "Whether to enable orc file format" ON)
5353
option(PAIMON_ENABLE_LANCE "Whether to enable lance file format" OFF)
5454
option(PAIMON_ENABLE_JINDO "Whether to enable jindo file system" OFF)
55-
option(PAIMON_ENABLE_LUMINA "Whether to enable lumina vector index" ON)
56-
option(PAIMON_ENABLE_LUCENE "Whether to enable lucene index" ON)
55+
option(PAIMON_ENABLE_LUMINA "Whether to enable lumina vector index" OFF)
56+
option(PAIMON_ENABLE_LUCENE "Whether to enable lucene index" OFF)
5757

5858
if(PAIMON_ENABLE_ORC)
5959
add_definitions(-DPAIMON_ENABLE_ORC)

ci/scripts/build_paimon.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ CMAKE_ARGS=(
3131
"-DPAIMON_BUILD_TESTS=ON"
3232
"-DPAIMON_ENABLE_LANCE=ON"
3333
"-DPAIMON_ENABLE_JINDO=ON"
34+
"-DPAIMON_ENABLE_LUMINA=ON"
35+
"-DPAIMON_ENABLE_LUCENE=ON"
3436
)
3537

3638
if [[ "${enable_sanitizer}" == "true" ]]; then

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
# The master toctree document.
114114
master_doc = "index"
115115

116-
version = "0.1.0"
116+
version = "0.1.1"
117117

118118
html_theme_options = {
119119
"show_toc_level": 2,

0 commit comments

Comments
 (0)