From ae24e756fb6a10bca1fb263ce687a322223ea7ba Mon Sep 17 00:00:00 2001 From: Wang Xiangyu Date: Sat, 27 Feb 2021 10:50:28 +0800 Subject: [PATCH] Update version name (#4751) Signed-off-by: Xiangyu Wang --- CHANGELOG.md | 2 +- INSTALL.md | 4 ++-- ci/jenkins/Jenkinsfile | 2 +- core/CMakeLists.txt | 2 +- core/src/config/Config.cpp | 2 +- tests/milvus_python_test/test_ping.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e3438c86b6..afccfdd312 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Please mark all change in change log and use the issue from GitHub -# Milvus 1.0.0-beta (TBD) +# Milvus 1.0.0 (TBD) ## Bug - \#4739 Fix mishards probe test problem - \#4749 Fix minor memory leak when building IVF_SQ8 on GPU diff --git a/INSTALL.md b/INSTALL.md index e5bd5c1d02..5a2c029214 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -145,7 +145,7 @@ With the following Docker images, you should be able to compile Milvus on any Li ### Step 1 Pull Milvus Docker images -#### ubuntu18.04 +#### Ubuntu 18.04 Pull CPU-only image: @@ -159,7 +159,7 @@ Pull GPU-enabled image: $ docker pull milvusdb/milvus-gpu-build-env:v0.7.0-ubuntu18.04 ``` -#### CentOs7 +#### CentOS 7 Pull CPU-only image: diff --git a/ci/jenkins/Jenkinsfile b/ci/jenkins/Jenkinsfile index 07196218b3..7719ec3bf8 100644 --- a/ci/jenkins/Jenkinsfile +++ b/ci/jenkins/Jenkinsfile @@ -1,7 +1,7 @@ #!/usr/bin/env groovy String cron_timezone = "TZ=Asia/Shanghai" -String cron_string = BRANCH_NAME == "1.0.0-beta" ? "50 22 * * * " : "" +String cron_string = BRANCH_NAME == "1.0.0" ? "50 22 * * * " : "" pipeline { agent none diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 4cc9fe0eec..d7d89492e2 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -90,7 +90,7 @@ if (MILVUS_VERSION_MAJOR STREQUAL "" OR MILVUS_VERSION_MINOR STREQUAL "" OR MILVUS_VERSION_PATCH STREQUAL "") message(WARNING "Failed to determine Milvus version from git branch name") - set(MILVUS_VERSION "1.0.0-beta") + set(MILVUS_VERSION "1.0.0") endif () message(STATUS "Build version = ${MILVUS_VERSION}") diff --git a/core/src/config/Config.cpp b/core/src/config/Config.cpp index 706cf697ff..7a67de97fd 100644 --- a/core/src/config/Config.cpp +++ b/core/src/config/Config.cpp @@ -215,7 +215,7 @@ static const std::unordered_map milvus_config_version_ {"0.10.4", "0.5"}, {"0.10.5", "0.5"}, {"0.10.6", "0.5"}, - {"1.0.0-beta", "0.5"}}); + {"1.0.0", "0.5"}}); ///////////////////////////////////////////////////////////// Config::Config() { diff --git a/tests/milvus_python_test/test_ping.py b/tests/milvus_python_test/test_ping.py index 1ad1edc0f2..5bc80ce9c5 100644 --- a/tests/milvus_python_test/test_ping.py +++ b/tests/milvus_python_test/test_ping.py @@ -1,7 +1,7 @@ import logging import pytest -__version__ = '1.0.0-beta' +__version__ = '1.0.0' class TestPing: