Bump version to 1.9.0 (#4083)

* Bump version to 1.9.0

* Bump version number in OpenAPI spec
This commit is contained in:
Tim Visée
2024-04-22 11:58:32 +02:00
committed by GitHub
parent 301730c2d6
commit b99d507496
8 changed files with 11043 additions and 7 deletions

4
Cargo.lock generated
View File

@@ -466,7 +466,7 @@ checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
[[package]]
name = "api"
version = "1.8.4"
version = "1.9.0"
dependencies = [
"chrono",
"common",
@@ -4047,7 +4047,7 @@ dependencies = [
[[package]]
name = "qdrant"
version = "1.8.4"
version = "1.9.0"
dependencies = [
"actix-cors",
"actix-files",

View File

@@ -1,6 +1,6 @@
[package]
name = "qdrant"
version = "1.8.4"
version = "1.9.0"
authors = [
"Andrey Vasnetsov <andrey@vasnetsov.com>",
"Qdrant Team <info@qdrant.tech>",

View File

@@ -1 +1 @@
const defaultApiVersion = 'v1.8.x';
const defaultApiVersion = 'v1.9.x';

View File

@@ -39,6 +39,7 @@
</button>
<div class="dropdown-menu dropdown-menu-right">
<a href="?v=master" class="dropdown-item" type="button">master</a>
<a href="?v=v1.9.x" class="dropdown-item" type="button">v1.9.x</a>
<a href="?v=v1.8.x" class="dropdown-item" type="button">v1.8.x</a>
<a href="?v=v1.7.x" class="dropdown-item" type="button">v1.7.x</a>
<a href="?v=v1.6.x" class="dropdown-item" type="button">v1.6.x</a>

11035
docs/redoc/v1.9.x/openapi.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[package]
name = "api"
version = "1.8.4"
version = "1.9.0"
authors = [
"Andrey Vasnetsov <andrey@vasnetsov.com>",
"Qdrant Team <info@qdrant.tech>",

View File

@@ -6,7 +6,7 @@ use semver::Version;
use crate::cpu;
/// Current Qdrant version string
pub const QDRANT_VERSION_STRING: &str = "1.8.4";
pub const QDRANT_VERSION_STRING: &str = "1.9.0";
lazy_static! {
/// Current Qdrant semver version

View File

@@ -8,7 +8,7 @@
set -euo pipefail
# Ignore all commits upto and including this commit hash on dev
IGNORE_UPTO=413b87a95910bd09cc4b209b80f4d85f0db3aca4
IGNORE_UPTO=a3abcef0f189301292516faaae9e9e2c2fb8ab58
# Fetch latest branch info from remote
git fetch -q origin master