mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
update branch version to 0.9.1 (#2364)
* update branch version to 0.9.1 Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * retry ci Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * retry ci Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * update test version Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
This commit is contained in:
parent
968eb14ab5
commit
42f751047e
12
CHANGELOG.md
12
CHANGELOG.md
@ -1,6 +1,16 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
Please mark all change in change log and use the issue from GitHub
|
Please mark all change in change log and use the issue from GitHub
|
||||||
|
# Milvus 0.9.1 (TBD)
|
||||||
|
|
||||||
|
## Bug
|
||||||
|
|
||||||
|
## Feature
|
||||||
|
- \#2363 Update branch version to 0.9.1
|
||||||
|
|
||||||
|
## Improvement
|
||||||
|
|
||||||
|
## Task
|
||||||
|
|
||||||
# Milvus 0.9.0 (2020-05-15)
|
# Milvus 0.9.0 (2020-05-15)
|
||||||
|
|
||||||
@ -29,7 +39,7 @@ Please mark all change in change log and use the issue from GitHub
|
|||||||
- \#2261 Re-define result returned by has_collection if collection in delete state
|
- \#2261 Re-define result returned by has_collection if collection in delete state
|
||||||
- \#2264 Milvus opened too many files when the metric_config.enable_monitor=true
|
- \#2264 Milvus opened too many files when the metric_config.enable_monitor=true
|
||||||
- \#2266 Server hangs when using multi-clients to query different collections
|
- \#2266 Server hangs when using multi-clients to query different collections
|
||||||
- \#2280 has_partition should return true for '_default'
|
- \#2280 has_partition should return true for `_default`
|
||||||
|
|
||||||
## Feature
|
## Feature
|
||||||
- \#1751 Add api SearchByID
|
- \#1751 Add api SearchByID
|
||||||
|
|||||||
@ -90,7 +90,7 @@ if (MILVUS_VERSION_MAJOR STREQUAL ""
|
|||||||
OR MILVUS_VERSION_MINOR STREQUAL ""
|
OR MILVUS_VERSION_MINOR STREQUAL ""
|
||||||
OR MILVUS_VERSION_PATCH STREQUAL "")
|
OR MILVUS_VERSION_PATCH STREQUAL "")
|
||||||
message(WARNING "Failed to determine Milvus version from git branch name")
|
message(WARNING "Failed to determine Milvus version from git branch name")
|
||||||
set(MILVUS_VERSION "0.9.0")
|
set(MILVUS_VERSION "0.9.1")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
message(STATUS "Build version = ${MILVUS_VERSION}")
|
message(STATUS "Build version = ${MILVUS_VERSION}")
|
||||||
|
|||||||
@ -187,7 +187,7 @@ constexpr int32_t PORT_NUMBER_MIN = 1024;
|
|||||||
constexpr int32_t PORT_NUMBER_MAX = 65535;
|
constexpr int32_t PORT_NUMBER_MAX = 65535;
|
||||||
|
|
||||||
static const std::unordered_map<std::string, std::string> milvus_config_version_map(
|
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.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"}});
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////
|
||||||
Config::Config() {
|
Config::Config() {
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
import logging
|
import logging
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
__version__ = '0.9.0'
|
__version__ = '0.9.1'
|
||||||
|
|
||||||
|
|
||||||
class TestPing:
|
class TestPing:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user