diff --git a/CMakeLists.txt b/CMakeLists.txt index 7eed186256..6866e3d269 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -156,7 +156,7 @@ add_subdirectory(client) # CPack settings set(CPACK_PACKAGE_NAME "infinity") -set(CPACK_PACKAGE_VERSION "0.1.0-dev") +set(CPACK_PACKAGE_VERSION "0.1.0") set(CPACK_PACKAGE_RELEASE 1) set(CPACK_PACKAGE_CONTACT "Zhichang Yu ") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "The AI-native database built for LLM applications, offering incredibly fast vector and full-text search.") diff --git a/README.md b/README.md index a8992bad4d..a66fc0e7e5 100644 --- a/README.md +++ b/README.md @@ -66,13 +66,13 @@ You can download the binary package (deb, rpm, or tgz) for your respective host Fedora/RHEL/CentOS/OpenSUSE ```bash -sudo rpm -i infinity-0.1.0-dev-x86_64.rpm +sudo rpm -i infinity-0.1.0-x86_64.rpm sudo systemctl start infinity ``` Ubuntu/Debian ```bash -sudo dpkg -i infinity-0.1.0-dev-x86_64.deb +sudo dpkg -i infinity-0.1.0-x86_64.deb sudo systemctl start infinity ``` #### 🛠️ Build from Source diff --git a/python/pyproject.toml b/python/pyproject.toml index f9183bf0fd..47e11b8ebd 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "infinity_sdk" -version = "0.1.0-dev22" +version = "0.1.0" dependencies = [ "sqlglot==11.7.1", "pydantic",