提交 bd7e0ee5 编写于 作者: J JinHai-CN

Update code due to 0.10.1

Signed-off-by: NJinHai-CN <hai.jin@zilliz.com>
上级 dae3beab
......@@ -2,7 +2,17 @@
Please mark all change in change log and use the issue from GitHub
# Milvus 0.10.0 (TBD)
# Milvus 0.10.1 (TBD)
## Bug
## Feature
## Improvement
## Task
# Milvus 0.10.0 (2020-06-15)
## Bug
- \#2367 Fix inconsistent reading and writing when using mishards
......
......@@ -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.10.0")
set(MILVUS_VERSION "0.10.1")
endif ()
message(STATUS "Build version = ${MILVUS_VERSION}")
......
......@@ -173,8 +173,14 @@ constexpr int64_t GB = 1UL << 30;
constexpr int32_t PORT_NUMBER_MIN = 1024;
constexpr int32_t PORT_NUMBER_MAX = 65535;
static const std::unordered_map<std::string, std::string> milvus_config_version_map(
{{"0.6.0", "0.1"}, {"0.7.0", "0.2"}, {"0.7.1", "0.2"}, {"0.8.0", "0.3"}, {"0.9.0", "0.4"}, {"0.10.0", "0.5"}});
static const std::unordered_map<std::string, std::string> milvus_config_version_map({{"0.6.0", "0.1"},
{"0.7.0", "0.2"},
{"0.7.1", "0.2"},
{"0.8.0", "0.3"},
{"0.9.0", "0.4"},
{"0.9.1", "0.4"},
{"0.10.0", "0.5"},
{"0.10.1", "0.5"}});
/////////////////////////////////////////////////////////////
Config::Config() {
......
import logging
import pytest
__version__ = '0.10.0'
__version__ = '0.10.1'
class TestPing:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册