From 38dfa126a0b87af8fa49719c1c8fe728543659ed Mon Sep 17 00:00:00 2001 From: George Panchuk Date: Thu, 7 Dec 2023 16:03:50 +0100 Subject: [PATCH] bump version to v1.7.0 --- .github/workflows/integration-tests-macos.yml | 1 - .github/workflows/integration-tests.yml | 2 +- pyproject.toml | 2 +- tests/integration-tests.sh | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration-tests-macos.yml b/.github/workflows/integration-tests-macos.yml index 338f1e1e..5ef00f4e 100644 --- a/.github/workflows/integration-tests-macos.yml +++ b/.github/workflows/integration-tests-macos.yml @@ -13,7 +13,6 @@ jobs: strategy: matrix: python-version: - - '3.7.x' - '3.8.x' - '3.9.x' - '3.10.x' diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 3021584b..6a23b0c8 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -53,7 +53,7 @@ jobs: - name: Backward compatibility integration tests run: | export RUNNER_OS=${{ runner.os }} - QDRANT_VERSION='v1.5.1' ./tests/integration-tests.sh + QDRANT_VERSION='v1.6.1' ./tests/integration-tests.sh shell: bash - name: Check conversion coverage run: | diff --git a/pyproject.toml b/pyproject.toml index 0cbae193..b947935d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "qdrant-client" -version = "1.6.9" +version = "1.7.0" description = "Client library for the Qdrant vector search engine" authors = ["Andrey Vasnetsov "] packages = [ diff --git a/tests/integration-tests.sh b/tests/integration-tests.sh index 5adace59..9c79ccfe 100755 --- a/tests/integration-tests.sh +++ b/tests/integration-tests.sh @@ -11,7 +11,7 @@ function stop_docker() # Ensure current path is project root cd "$(dirname "$0")/../" -QDRANT_LATEST="v1.6.1" +QDRANT_LATEST="v1.7.0" QDRANT_VERSION=${QDRANT_VERSION:-"$QDRANT_LATEST"} IGNORE_CONGRUENCE_TESTS=${IGNORE_CONGRUENCE_TESTS:-"false"} REST_PORT="6333"