Skip to content

Commit eb3d56c

Browse files
authored
Merge pull request #242 from milvus-io/0.5.2
Merge from 0.5.2
2 parents fbe071a + 19a5b00 commit eb3d56c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Please mark all change in change log and use the ticket from JIRA.
44

5-
# Milvus 0.5.2 (TODO)
5+
# Milvus 0.5.2 (2019-11-07)
66

77
## Bug
88
- \#194 - Search faild: message="Table file doesn't exist"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
![LICENSE](https://img.shields.io/badge/license-Apache--2.0-brightgreen)
66
![Language](https://img.shields.io/badge/language-C%2B%2B-blue)
77
[![codebeat badge](https://codebeat.co/badges/e030a4f6-b126-4475-a938-4723d54ec3a7?style=plastic)](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)
8-
![Release](https://img.shields.io/badge/release-v0.5.1-yellowgreen)
8+
![Release](https://img.shields.io/badge/release-v0.5.2-yellowgreen)
99
![Release_date](https://img.shields.io/badge/release%20date-November-yellowgreen)
1010

1111
[中文版](README_CN.md)
@@ -18,7 +18,7 @@ For more detailed introduction of Milvus and its architecture, see [Milvus overv
1818

1919
Milvus provides stable [Python](https://github.com/milvus-io/pymilvus), [Java](https://github.com/milvus-io/milvus-sdk-java) and C++ APIs.
2020

21-
Keep up-to-date with newest releases and latest updates by reading Milvus [release notes](https://www.milvus.io/docs/en/release/v0.5.0/).
21+
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/).
2222

2323
## Get started
2424

README_CN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
![Language](https://img.shields.io/badge/language-C%2B%2B-blue)
55
[![codebeat badge](https://codebeat.co/badges/e030a4f6-b126-4475-a938-4723d54ec3a7?style=plastic)](https://codebeat.co/projects/github-com-jinhai-cn-milvus-master)
66

7-
![Release](https://img.shields.io/badge/release-v0.5.0-orange)
7+
![Release](https://img.shields.io/badge/release-v0.5.2-orange)
88
![Release_date](https://img.shields.io/badge/release_date-October-yellowgreen)
99

1010
- [Slack 频道](https://join.slack.com/t/milvusio/shared_invite/enQtNzY1OTQ0NDI3NjMzLWNmYmM1NmNjOTQ5MGI5NDhhYmRhMGU5M2NhNzhhMDMzY2MzNDdlYjM5ODQ5MmE3ODFlYzU3YjJkNmVlNDQ2ZTk)
@@ -22,7 +22,7 @@ Milvus 是一款开源的、针对海量特征向量的相似性搜索引擎。
2222

2323
Milvus 提供稳定的 Python、Java 以及 C++ 的 API 接口。
2424

25-
通过 [版本发布说明](https://milvus.io/docs/zh-CN/release/v0.5.0/) 获取最新发行版本的 Milvus。
25+
通过 [版本发布说明](https://milvus.io/docs/zh-CN/release/v0.5.2/) 获取最新发行版本的 Milvus。
2626

2727
- 异构众核
2828

ci/jenkins/Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
String cron_timezone = "TZ=Asia/Shanghai"
44
String cron_string = BRANCH_NAME == "master" ? "H 0 * * * " : ""
5-
cron_string = BRANCH_NAME == "0.5.1" ? "H 1 * * * " : cron_string
5+
cron_string = BRANCH_NAME == "0.5.2" ? "H 1 * * * " : cron_string
66

77
pipeline {
88
agent none

tests/milvus_python_test/test_ping.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
import pytest
33

4-
__version__ = '0.5.1'
4+
__version__ = '0.5.2'
55

66

77
class TestPing:

0 commit comments

Comments
 (0)