Skip to content

Commit 7ac915e

Browse files
committed
Prepare for v2.6.3
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent 1abff75 commit 7ac915e

6 files changed

Lines changed: 15 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## milvus-sdk-cpp 2.6.3 (2026-05-06)
4+
### Feature
5+
- Support AddCollectionFunction(), AlterCollectionFunction(), and DropCollectionFunction() interfaces
6+
- Support BatchDescribeCollections() and DescribeReplicas() interfaces
7+
- Support RefreshLoad() and Optimize() interfaces
8+
9+
### Bug
10+
- Fix a bug in DropIndex()
11+
12+
313
## milvus-sdk-cpp 2.6.2 (2026-04-13)
414
### Improvement
515
- Use conan to manage dependencies

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Currently, we tested the below platform and compilers for developing Milvus C++
1717
| Linux | Ubuntu 20.04 | GCC 9.3.0 | Full (Compile, Lint, Testing) |
1818
| Linux | Ubuntu 22.04 | GCC 11.4 | Full (Compile, Lint, Testing) |
1919
| Linux | Fedora 38/39 | GCC 11.2+ | Compile, Testing |
20-
| macOS | macOS 14 | Apple Clang | Compile, Testing |
20+
| macOS | macOS 15 | Apple Clang | Compile, Testing |
2121
| Windows | Windows 2022 | MSVC 2022 | Compile, Testing |
2222

2323
### Clone the code

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following collection shows Milvus versions and recommended milvus-cpp-sdk ve
1717
| 2.3.x | 2.3(branch) |
1818
| 2.4.x | v2.4.1 |
1919
| 2.5.x | v2.5.4 |
20-
| 2.6.x | v2.6.2 |
20+
| 2.6.x | v2.6.3 |
2121

2222

2323
## Installation

doc/html/version_8h_source.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;<span class="comment">// See the License for the specific language governing permissions and</span></div>
8686
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="comment">// limitations under the License.</span></div>
8787
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160; </div>
88-
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;<span class="preprocessor">#define MILVUS_SDK_VERSION &quot;v2.6.2&quot;</span></div>
88+
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;<span class="preprocessor">#define MILVUS_SDK_VERSION &quot;v2.6.3&quot;</span></div>
8989
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;<span class="preprocessor">#define CMAKE_BUILD_TYPE &quot;Debug&quot;</span></div>
9090
</div><!-- fragment --></div><!-- contents -->
9191
<!-- start footer part -->

examples/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Examples for MilvusClientV2:
4545
- `./cmake_build/examples/v2/sdk_json_v2`: example to show the usage of JSON field.
4646
- `./cmake_build/examples/v2/sdk_multi_analyzer_v2`: example to show the usage of multi-analyzer for full text match.
4747
- `./cmake_build/examples/v2/sdk_nullable_field_v2`: example to show the usage of nullable field.
48+
- `./cmake_build/examples/v2/sdk_optimize_v2`: example to show the usage of Optimize().
4849
- `./cmake_build/examples/v2/sdk_partition_key_v2`: example to show the usage of partition key.
4950
- `./cmake_build/examples/v2/sdk_rbac_v2`: example to show the usage of RBAC.
5051
- `./cmake_build/examples/v2/sdk_rerank_function_v2`: example to show the usage of rerank function.

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ MAKE_CLEAN="OFF"
2525
RUN_FORMAT="ON"
2626
RUN_CPPLINT="OFF"
2727
BUILD_COVERAGE="OFF"
28-
MILVUS_SDK_VERSION=${MILVUS_SDK_VERSION:-v2.6.2}
28+
MILVUS_SDK_VERSION=${MILVUS_SDK_VERSION:-v2.6.3}
2929
DO_INSTALL="OFF"
3030
CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX:-/usr/local}
3131
BUILD_SHARED_LIBS=${BUILD_SHARED_LIBS:-ON}

0 commit comments

Comments
 (0)