mirror of https://github.com/milvus-io/milvus.git
parent
9c509534df
commit
ae24e756fb
|
@ -2,7 +2,7 @@
|
|||
|
||||
Please mark all change in change log and use the issue from GitHub
|
||||
|
||||
# Milvus 1.0.0-beta (TBD)
|
||||
# Milvus 1.0.0 (TBD)
|
||||
## Bug
|
||||
- \#4739 Fix mishards probe test problem
|
||||
- \#4749 Fix minor memory leak when building IVF_SQ8 on GPU
|
||||
|
|
|
@ -145,7 +145,7 @@ With the following Docker images, you should be able to compile Milvus on any Li
|
|||
|
||||
### Step 1 Pull Milvus Docker images
|
||||
|
||||
#### ubuntu18.04
|
||||
#### Ubuntu 18.04
|
||||
|
||||
Pull CPU-only image:
|
||||
|
||||
|
@ -159,7 +159,7 @@ Pull GPU-enabled image:
|
|||
$ docker pull milvusdb/milvus-gpu-build-env:v0.7.0-ubuntu18.04
|
||||
```
|
||||
|
||||
#### CentOs7
|
||||
#### CentOS 7
|
||||
|
||||
Pull CPU-only image:
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env groovy
|
||||
|
||||
String cron_timezone = "TZ=Asia/Shanghai"
|
||||
String cron_string = BRANCH_NAME == "1.0.0-beta" ? "50 22 * * * " : ""
|
||||
String cron_string = BRANCH_NAME == "1.0.0" ? "50 22 * * * " : ""
|
||||
|
||||
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 "1.0.0-beta")
|
||||
set(MILVUS_VERSION "1.0.0")
|
||||
endif ()
|
||||
|
||||
message(STATUS "Build version = ${MILVUS_VERSION}")
|
||||
|
|
|
@ -215,7 +215,7 @@ static const std::unordered_map<std::string, std::string> milvus_config_version_
|
|||
{"0.10.4", "0.5"},
|
||||
{"0.10.5", "0.5"},
|
||||
{"0.10.6", "0.5"},
|
||||
{"1.0.0-beta", "0.5"}});
|
||||
{"1.0.0", "0.5"}});
|
||||
|
||||
/////////////////////////////////////////////////////////////
|
||||
Config::Config() {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import logging
|
||||
import pytest
|
||||
|
||||
__version__ = '1.0.0-beta'
|
||||
__version__ = '1.0.0'
|
||||
|
||||
|
||||
class TestPing:
|
||||
|
|
Loading…
Reference in New Issue