Update version name (#4751)

Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
pull/4755/head
Wang Xiangyu 2021-02-27 10:50:28 +08:00 committed by GitHub
parent 9c509534df
commit ae24e756fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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:

View File

@ -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

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 "1.0.0-beta")
set(MILVUS_VERSION "1.0.0")
endif ()
message(STATUS "Build version = ${MILVUS_VERSION}")

View File

@ -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() {

View File

@ -1,7 +1,7 @@
import logging
import pytest
__version__ = '1.0.0-beta'
__version__ = '1.0.0'
class TestPing: