Skip to content

Commit f7a0dee

Browse files
authored
Merge pull request #106 from BossZou/0.5.1
Remove index type PQ
2 parents 9937c57 + 1e8b85a commit f7a0dee

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
# pymilvus 0.2.4(2019-10-29)
1+
# pymilvus 0.2.4(2019-11-04)
22

33
## Bug
44
- \#102 - make methods `delete_by_range` private
55

66
## Improvement
77
- \#103 - remove .codecov.yml and .travis.yml
8+
- \#105 - update READ.md to update version table and version note
89

910
## New Feature
1011
- \#100 - add new index type PQ
11-
- \#101 - Give some methods new names
12+
- \#101 - Give client methods new alterative names.
1213

1314

1415
# pymilvus 0.2.3(2019-10-21)

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ $ pip install pymilvus
1616
```
1717
Different versions of Milvus and lowest/highest pymilvus version supported accordingly
1818

19-
|Milvus version| Lowest pymilvus version supported|Highest pymivus version supported|
20-
|:-----:|:-----:|:-----:|
21-
| 0.3.0 | - | 0.1.13|
22-
| 0.3.1 | 0.1.14| 0.1.25|
23-
| 0.4.0 | 0.2.0 | 0.2.2 |
24-
| 0.5.0 | 0.2.3 | - |
19+
|Milvus version| Recommended pymilvus version |
20+
|:-----:|:-----:|
21+
| 0.3.0 | 0.1.13|
22+
| 0.3.1 | 0.1.25|
23+
| 0.4.0 | 0.2.2 |
24+
| 0.5.0 | 0.2.3 |
25+
2526

2627
You can download a specific version by:
2728
```$
@@ -189,3 +190,4 @@ $ sphinx-build -b html doc/en/ doc/en/build
189190

190191

191192
If you encounter any problems or bugs, please open new issues
193+

milvus/client/types.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ class IndexType(IntEnum):
6363
IVF_SQ8 = 3
6464
MIX_NSG = 4
6565
IVF_SQ8H = 5
66-
PQ = 6
6766

6867
def __repr__(self):
6968
return "<{}: {}>".format(self.__class__.__name__, self._name_)

0 commit comments

Comments
 (0)