Update to 0.10.3

Signed-off-by: jinhai <hai.jin@zilliz.com>
pull/3269/head
jinhai 2020-08-15 16:21:43 +08:00
parent cd689fd703
commit f59c240457
5 changed files with 15 additions and 5 deletions

View File

@ -2,7 +2,16 @@
Please mark all change in change log and use the issue from GitHub
# Milvus 0.10.2 (TBD)
# Milvus 0.10.3 (TBD)
## Bug
## Feature
## Improvement
## Task
# Milvus 0.10.2 (2020-08-15)
## Bug
- \#2890 Fix the index size caculation in cache

View File

@ -1,7 +1,7 @@
#!/usr/bin/env groovy
String cron_timezone = "TZ=Asia/Shanghai"
String cron_string = BRANCH_NAME == "0.10.2" ? "50 22 * * * " : ""
String cron_string = BRANCH_NAME == "0.10.3" ? "50 22 * * * " : ""
pipeline {
agent none

View File

@ -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.2")
set(MILVUS_VERSION "0.10.3")
endif ()
message(STATUS "Build version = ${MILVUS_VERSION}")

View File

@ -186,7 +186,8 @@ static const std::unordered_map<std::string, std::string> milvus_config_version_
{"0.9.1", "0.4"},
{"0.10.0", "0.5"},
{"0.10.1", "0.5"},
{"0.10.2", "0.5"}});
{"0.10.2", "0.5"},
{"0.10.3", "0.5"}});
/////////////////////////////////////////////////////////////
Config::Config() {

View File

@ -1,7 +1,7 @@
import logging
import pytest
__version__ = '0.10.2'
__version__ = '0.10.3'
class TestPing: