From c2faaf90da7a6f15f28795462120c378ffe16ae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Vis=C3=A9e?= Date: Tue, 11 Feb 2025 15:22:04 +0100 Subject: [PATCH] Bump version to 1.13.3 (#5970) * Bump version to 1.13.3 * Update missed cherry picks --- 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 2b748eaf34..92afc7ebd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -489,7 +489,7 @@ checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04" [[package]] name = "api" -version = "1.13.2" +version = "1.13.3" dependencies = [ "chrono", "common", @@ -4766,7 +4766,7 @@ dependencies = [ [[package]] name = "qdrant" -version = "1.13.2" +version = "1.13.3" dependencies = [ "actix-cors", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index 79c8a3c375..a03965358f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qdrant" -version = "1.13.2" +version = "1.13.3" description = "Qdrant - Vector Search engine" authors = [ "Andrey Vasnetsov ", diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index d6bdd4e0cf..7de5d54c0e 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api" -version = "1.13.2" +version = "1.13.3" authors = [ "Andrey Vasnetsov ", "Qdrant Team ", diff --git a/lib/common/common/src/defaults.rs b/lib/common/common/src/defaults.rs index 037cc2279b..7062945c4a 100644 --- a/lib/common/common/src/defaults.rs +++ b/lib/common/common/src/defaults.rs @@ -6,7 +6,7 @@ use semver::Version; use crate::cpu; /// Current Qdrant version string -pub const QDRANT_VERSION_STRING: &str = "1.13.2"; +pub const QDRANT_VERSION_STRING: &str = "1.13.3"; lazy_static! { /// Current Qdrant semver version diff --git a/tools/missed_cherry_picks.sh b/tools/missed_cherry_picks.sh index 068ed2616a..2efbc35b9c 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=0af7be081ef53d9fb2063e17932d7063b2ccc90e +IGNORE_UPTO=83b585547ad2cdc6d920f2d5046ddcff5164b90d # Fetch latest branch info from remote git fetch -q origin master