diff --git a/Cargo.lock b/Cargo.lock index 124c39c43b..030349c5b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -494,7 +494,7 @@ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470" [[package]] name = "api" -version = "1.19.0" +version = "1.19.1" dependencies = [ "ahash", "chrono", @@ -6005,7 +6005,7 @@ dependencies = [ [[package]] name = "qdrant" -version = "1.19.0" +version = "1.19.1" dependencies = [ "actix-cors", "actix-files", diff --git a/Cargo.toml b/Cargo.toml index 2d1ff3d967..5d291ef1ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qdrant" -version = "1.19.0" +version = "1.19.1" description = "Qdrant - Vector Search engine" authors = [ "Andrey Vasnetsov ", diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index f27941b5d8..effaf2a5bf 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "api" -version = "1.19.0" +version = "1.19.1" authors = [ "Andrey Vasnetsov ", "Qdrant Team ", diff --git a/lib/common/common/src/defaults.rs b/lib/common/common/src/defaults.rs index 6473f2c7e0..ee40d8c361 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.19.0"; +pub const QDRANT_VERSION_STRING: &str = "1.19.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 16fbc02eb1..d93aa6eb75 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=8ce8e3ad4a983d917e7b28621bd700b0cb815821 +IGNORE_UPTO=20391cac08f211268e26d138ff4e9d35e9d5e668 # Fetch latest branch info from remote git fetch -q origin master