mirror of https://github.com/milvus-io/milvus.git
Merge branch '0.5.2' into 0.5.2
commit
98d928fd6a
|
@ -2,7 +2,7 @@
|
|||
|
||||
Please mark all change in change log and use the ticket from JIRA.
|
||||
|
||||
# Milvus 0.5.2 (TODO)
|
||||
# Milvus 0.5.2 (2019-11-07)
|
||||
|
||||
## Bug
|
||||
- \#194 - Search faild: message="Table file doesn't exist"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||

|
||||

|
||||
[](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)
|
||||

|
||||

|
||||

|
||||
|
||||
[中文版](README_CN.md)
|
||||
|
@ -18,7 +18,7 @@ For more detailed introduction of Milvus and its architecture, see [Milvus overv
|
|||
|
||||
Milvus provides stable [Python](https://github.com/milvus-io/pymilvus), [Java](https://github.com/milvus-io/milvus-sdk-java) and C++ APIs.
|
||||
|
||||
Keep up-to-date with newest releases and latest updates by reading Milvus [release notes](https://www.milvus.io/docs/en/release/v0.5.1/).
|
||||
Keep up-to-date with newest releases and latest updates by reading Milvus [release notes](https://www.milvus.io/docs/en/release/v0.5.2/).
|
||||
|
||||
## Get started
|
||||
|
||||
|
|
|
@ -4,8 +4,10 @@
|
|||

|
||||

|
||||
[](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
# 欢迎来到 Milvus
|
||||
|
||||
## Milvus 是什么
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
String cron_timezone = "TZ=Asia/Shanghai"
|
||||
String cron_string = BRANCH_NAME == "master" ? "H 0 * * * " : ""
|
||||
cron_string = BRANCH_NAME == "0.5.1" ? "H 1 * * * " : cron_string
|
||||
cron_string = BRANCH_NAME == "0.5.2" ? "H 1 * * * " : cron_string
|
||||
|
||||
pipeline {
|
||||
agent none
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import logging
|
||||
import pytest
|
||||
|
||||
__version__ = '0.5.1'
|
||||
__version__ = '0.5.2'
|
||||
|
||||
|
||||
class TestPing:
|
||||
|
|
Loading…
Reference in New Issue