From a09d588c148ea0099f955fb9ec490c98ce5b27e5 Mon Sep 17 00:00:00 2001 From: Andrey Vasnetsov Date: Thu, 26 Mar 2026 20:06:34 +0100 Subject: [PATCH] bump version to v1.17.1 (#8517) * bump version to v1.17.1 * Update missed cherry picks [skip ci] Made-with: Cursor --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- lib/api/Cargo.toml | 2 +- lib/common/common/src/defaults.rs | 2 +- tools/missed_cherry_picks.sh | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 42e2f240e9..aa7bc5157f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -478,7 +478,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "api" -version = "1.17.0" +version = "1.17.1" dependencies = [ "ahash", "chrono", @@ -5804,7 +5804,7 @@ dependencies = [ [[package]] name = "qdrant" -version = "1.17.0" +version = "1.17.1" dependencies = [ "actix-cors", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index 86e0dfb6ce..b164fde6e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qdrant" -version = "1.17.0" +version = "1.17.1" description = "Qdrant - Vector Search engine" authors = [ "Andrey Vasnetsov ", diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index 55c6007cdd..1708b84e57 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api" -version = "1.17.0" +version = "1.17.1" authors = [ "Andrey Vasnetsov ", "Qdrant Team ", diff --git a/lib/common/common/src/defaults.rs b/lib/common/common/src/defaults.rs index 20717f0d42..d685c2480a 100644 --- a/lib/common/common/src/defaults.rs +++ b/lib/common/common/src/defaults.rs @@ -7,7 +7,7 @@ use semver::Version; use crate::cpu; /// Current Qdrant version string -pub const QDRANT_VERSION_STRING: &str = "1.17.0"; +pub const QDRANT_VERSION_STRING: &str = "1.17.1"; /// Current Qdrant semver version pub static QDRANT_VERSION: LazyLock = diff --git a/tools/missed_cherry_picks.sh b/tools/missed_cherry_picks.sh index 25d9d1bf86..bdf8f4d2d1 100755 --- a/tools/missed_cherry_picks.sh +++ b/tools/missed_cherry_picks.sh @@ -8,7 +8,7 @@ set -euo pipefail # Ignore all commits upto and including this commit hash on dev -IGNORE_UPTO=aa8740ff2304a9669a77aaff710dac304e0d3135 +IGNORE_UPTO=fb704e5d13854963fc1886220de88a9340bb9e30 # Fetch latest branch info from remote git fetch -q origin master