diff --git a/CHANGELOG.md b/CHANGELOG.md index ebb287de18a52836c018667f640864855019bb2a..9495456c9a001155d0c8a084a76a86a3700c6683 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,17 @@ Please mark all change in change log and use the issue from GitHub -# Milvus 0.10.0 (TBD) +# Milvus 0.10.1 (TBD) + +## Bug + +## Feature + +## Improvement + +## Task + +# Milvus 0.10.0 (2020-06-15) ## Bug - \#2367 Fix inconsistent reading and writing when using mishards diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index b98170fc05122bcabadfda81607d5163b0cdc172..6f4fce9eea726e8d7cc686160a18b2f1cdea9a2e 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -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 "0.10.0") + set(MILVUS_VERSION "0.10.1") endif () message(STATUS "Build version = ${MILVUS_VERSION}") diff --git a/core/src/config/Config.cpp b/core/src/config/Config.cpp index ea88878d151cfb360a5efb4ce5bf167ad8099656..74b48f47e29d32cb4eca0f53524b6eb555533e36 100644 --- a/core/src/config/Config.cpp +++ b/core/src/config/Config.cpp @@ -173,8 +173,14 @@ constexpr int64_t GB = 1UL << 30; constexpr int32_t PORT_NUMBER_MIN = 1024; constexpr int32_t PORT_NUMBER_MAX = 65535; -static const std::unordered_map milvus_config_version_map( - {{"0.6.0", "0.1"}, {"0.7.0", "0.2"}, {"0.7.1", "0.2"}, {"0.8.0", "0.3"}, {"0.9.0", "0.4"}, {"0.10.0", "0.5"}}); +static const std::unordered_map milvus_config_version_map({{"0.6.0", "0.1"}, + {"0.7.0", "0.2"}, + {"0.7.1", "0.2"}, + {"0.8.0", "0.3"}, + {"0.9.0", "0.4"}, + {"0.9.1", "0.4"}, + {"0.10.0", "0.5"}, + {"0.10.1", "0.5"}}); ///////////////////////////////////////////////////////////// Config::Config() { diff --git a/tests/milvus_python_test/test_ping.py b/tests/milvus_python_test/test_ping.py index c3d382efd92b985d48424188353c168372e464ea..91b548aab453b19209f10d51842be044f12cbfb9 100644 --- a/tests/milvus_python_test/test_ping.py +++ b/tests/milvus_python_test/test_ping.py @@ -1,7 +1,7 @@ import logging import pytest -__version__ = '0.10.0' +__version__ = '0.10.1' class TestPing: