mirror of https://github.com/milvus-io/milvus.git
Update code due to 0.10.1
Signed-off-by: JinHai-CN <hai.jin@zilliz.com>pull/2641/head
parent
dae3beab34
commit
bd7e0ee5c9
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -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() {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import logging
|
||||
import pytest
|
||||
|
||||
__version__ = '0.10.0'
|
||||
__version__ = '0.10.1'
|
||||
|
||||
|
||||
class TestPing:
|
||||
|
|
Loading…
Reference in New Issue