Skip to content

Commit a319f48

Browse files
committed
bump to v1.16.1
1 parent e534eb6 commit a319f48

File tree

11 files changed

+30
-11
lines changed

11 files changed

+30
-11
lines changed

examples/node-js-basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"author": "Qdrant Team",
1616
"license": "Apache-2.0",
1717
"dependencies": {
18-
"@qdrant/qdrant-js": "^1.16.0"
18+
"@qdrant/qdrant-js": "^1.16.1"
1919
}
2020
}

packages/js-client-grpc/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @qdrant/js-client-grpc
22

3+
## 1.16.1
4+
5+
### Patch Changes
6+
7+
- No changes
8+
39
## 1.16.0
410

511
### Minor Changes

packages/js-client-grpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qdrant/js-client-grpc",
3-
"version": "1.16.0",
3+
"version": "1.16.1",
44
"engines": {
55
"node": ">=18.0.0",
66
"pnpm": ">=8"

packages/js-client-grpc/src/client-version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const PACKAGE_VERSION = '1.16.0';
1+
export const PACKAGE_VERSION = '1.16.1';
22

33
interface Version {
44
major: number;

packages/js-client-rest/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @qdrant/js-client-rest
22

3+
## v1.16.1
4+
5+
### Patch Changes
6+
7+
- Patch update for Qdrant v1.16.0 API
8+
- Use `Schemas["MyType"]` in arguments for better navigability.
9+
310
## 1.16.0
411

512
### Minor Changes

packages/js-client-rest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qdrant/js-client-rest",
3-
"version": "1.16.0",
3+
"version": "1.16.1",
44
"engines": {
55
"node": ">=18.17.0",
66
"pnpm": ">=8"

packages/js-client-rest/src/client-version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const PACKAGE_VERSION = '1.16.0';
1+
export const PACKAGE_VERSION = '1.16.1';
22

33
interface Version {
44
major: number;

packages/qdrant-js/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @qdrant/qdrant-js
22

3+
## v1.16.1
4+
5+
### Patch Changes
6+
7+
- rest: Patch update for Qdrant v1.16.0 API
8+
39
## 1.16.0
410

511
### Minor Changes

packages/qdrant-js/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qdrant/qdrant-js",
3-
"version": "1.16.0",
3+
"version": "1.16.1",
44
"engines": {
55
"node": ">=18.17.0",
66
"pnpm": ">=8"
@@ -57,8 +57,8 @@
5757
"clean": "rimraf ./dist"
5858
},
5959
"dependencies": {
60-
"@qdrant/js-client-rest": "workspace:1.16.0",
61-
"@qdrant/js-client-grpc": "workspace:1.16.0"
60+
"@qdrant/js-client-rest": "workspace:1.16.1",
61+
"@qdrant/js-client-grpc": "workspace:1.16.1"
6262
},
6363
"peerDependencies": {
6464
"typescript": ">=4.1"

packages/qdrant-js/scripts/integration-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function stop_docker()
99
docker stop qdrant_test
1010
}
1111

12-
QDRANT_LATEST="v1.16.0"
12+
QDRANT_LATEST="v1.16.1"
1313
QDRANT_VERSION=${QDRANT_VERSION:-"$QDRANT_LATEST"}
1414

1515
QDRANT_HOST='127.0.0.1:6333'

0 commit comments

Comments
 (0)