mirror of https://github.com/milvus-io/milvus.git
parent
014a0e860c
commit
b616dcb761
|
@ -1,12 +1,12 @@
|
|||
# Changelog
|
||||
|
||||
Please mark all change in change log and use the issue from GitHub
|
||||
# Milvus 0.9.1 (TBD)
|
||||
# Milvus 0.10.0 (TBD)
|
||||
|
||||
## Bug
|
||||
|
||||
## Feature
|
||||
- \#2363 Update branch version to 0.9.1
|
||||
- \#2363 Update branch version
|
||||
|
||||
## Improvement
|
||||
- \#2370 Clean compile warning
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env groovy
|
||||
|
||||
String cron_timezone = "TZ=Asia/Shanghai"
|
||||
String cron_string = BRANCH_NAME == "0.9.1" ? "38 1 * * * " : ""
|
||||
String cron_string = BRANCH_NAME == "0.10.0" ? "38 1 * * * " : ""
|
||||
|
||||
pipeline {
|
||||
agent none
|
||||
|
|
|
@ -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.9.1")
|
||||
set(MILVUS_VERSION "0.10.0")
|
||||
endif ()
|
||||
|
||||
message(STATUS "Build version = ${MILVUS_VERSION}")
|
||||
|
|
|
@ -187,7 +187,7 @@ 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.9.1", "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.10.0", "0.4"}});
|
||||
|
||||
/////////////////////////////////////////////////////////////
|
||||
Config::Config() {
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#include "grpc-gen/gen-milvus/milvus.grpc.pb.h"
|
||||
|
||||
#define MILVUS_SDK_VERSION "0.9.0";
|
||||
#define MILVUS_SDK_VERSION "0.10.0";
|
||||
|
||||
namespace milvus {
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import logging
|
||||
import pytest
|
||||
|
||||
__version__ = '0.9.1'
|
||||
__version__ = '0.10.0'
|
||||
|
||||
|
||||
class TestPing:
|
||||
|
|
Loading…
Reference in New Issue