From d92bcd2e5412169cbcf2955af5f1e4ca98e07828 Mon Sep 17 00:00:00 2001 From: Jin Hai Date: Fri, 27 Mar 2020 14:02:54 +0800 Subject: [PATCH] Update CHANGLOG.md (#1771) * Update CHANGLOG.md Signed-off-by: JinHai-CN * Update Signed-off-by: JinHai-CN * Update Signed-off-by: JinHai-CN --- CHANGELOG.md | 4 ++-- core/CMakeLists.txt | 2 +- core/src/config/Config.cpp | 3 ++- core/src/server/web_impl/README.md | 2 +- sdk/grpc/ClientProxy.cpp | 2 +- tests/milvus_python_test/test_ping.py | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37adc5d1b1..93e32ec337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -161,7 +161,7 @@ Please mark all change in change log and use the issue from GitHub # Milvus 0.6.0 (2019-12-07) ## Bug -- \#228 memory usage increased slowly during searching vectors +- \#228 Memory usage increased slowly during searching vectors - \#246 Exclude src/external folder from code coverage for jenkin ci - \#248 Reside src/external in thirdparty - \#316 Some files not merged after vectors added @@ -188,7 +188,7 @@ Please mark all change in change log and use the issue from GitHub - \#523 Erase file data from cache once the file is marked as deleted - \#527 faiss benchmark not compatible with faiss 1.6.0 - \#530 BuildIndex stop when do build index and search simultaneously -- \#532 assigin value to `table_name` from confest shell +- \#532 Assigin value to `table_name` from confest shell - \#533 NSG build failed with MetricType Inner Product - \#543 client raise exception in shards when search results is empty - \#545 Avoid dead circle of build index thread when error occurs diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 34de23399a..53ebe63b4e 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 "0.7.0") + set(MILVUS_VERSION "0.7.1") endif () message(STATUS "Build version = ${MILVUS_VERSION}") diff --git a/core/src/config/Config.cpp b/core/src/config/Config.cpp index cddc8a1203..b8f65a1702 100644 --- a/core/src/config/Config.cpp +++ b/core/src/config/Config.cpp @@ -40,7 +40,8 @@ namespace server { constexpr int64_t GB = 1UL << 30; static const std::unordered_map milvus_config_version_map({{"0.6.0", "0.1"}, - {"0.7.0", "0.2"}}); + {"0.7.0", "0.2"}, + {"0.7.1", "0.2"}}); ///////////////////////////////////////////////////////////// Config::Config() { diff --git a/core/src/server/web_impl/README.md b/core/src/server/web_impl/README.md index 675ed3c6df..04eaaa12a9 100644 --- a/core/src/server/web_impl/README.md +++ b/core/src/server/web_impl/README.md @@ -1388,7 +1388,7 @@ $ curl -X GET "http://127.0.0.1:19121/system/version" -H "accept: application/js ##### Response ```json -{"code":0,"message":"OK","reply": "0.7.0" } +{"code":0,"message":"OK","reply": "0.7.1" } ``` ### `system/{op}` (PUT) diff --git a/sdk/grpc/ClientProxy.cpp b/sdk/grpc/ClientProxy.cpp index 219f78e4ad..1e9dbba1ba 100644 --- a/sdk/grpc/ClientProxy.cpp +++ b/sdk/grpc/ClientProxy.cpp @@ -17,7 +17,7 @@ #include "grpc-gen/gen-milvus/milvus.grpc.pb.h" -#define MILVUS_SDK_VERSION "0.7.0"; +#define MILVUS_SDK_VERSION "0.7.1"; namespace milvus { diff --git a/tests/milvus_python_test/test_ping.py b/tests/milvus_python_test/test_ping.py index a2ca5575d8..2a05349354 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__ = '0.7.0' +__version__ = '0.7.1' class TestPing: