File tree Expand file tree Collapse file tree 17 files changed +22
-22
lines changed
clients/new-js/packages/chromadb Expand file tree Collapse file tree 17 files changed +22
-22
lines changed Original file line number Diff line number Diff line change 56
56
57
57
__settings = Settings ()
58
58
59
- __version__ = "1.0.15 "
59
+ __version__ = "1.0.16 "
60
60
61
61
62
62
# Workaround to deal with Colab's old sqlite3 version
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " chromadb" ,
3
- "version" : " 3.0.10 " ,
3
+ "version" : " 3.0.11 " ,
4
4
"description" : " A JavaScript interface for chroma" ,
5
5
"keywords" : [
6
6
" chroma" ,
73
73
"wait-on" : " ^8.0.3"
74
74
},
75
75
"optionalDependencies" : {
76
- "chromadb-js-bindings-darwin-arm64" : " ^1.0.1 " ,
77
- "chromadb-js-bindings-darwin-x64" : " ^1.0.1 " ,
78
- "chromadb-js-bindings-linux-arm64-gnu" : " ^1.0.1 " ,
79
- "chromadb-js-bindings-linux-x64-gnu" : " ^1.0.1 " ,
80
- "chromadb-js-bindings-win32-x64-msvc" : " ^1.0.1 "
76
+ "chromadb-js-bindings-darwin-arm64" : " ^1.0.2 " ,
77
+ "chromadb-js-bindings-darwin-x64" : " ^1.0.2 " ,
78
+ "chromadb-js-bindings-linux-arm64-gnu" : " ^1.0.2 " ,
79
+ "chromadb-js-bindings-linux-x64-gnu" : " ^1.0.2 " ,
80
+ "chromadb-js-bindings-win32-x64-msvc" : " ^1.0.2 "
81
81
},
82
82
"engines" : {
83
83
"node" : " >=20"
Original file line number Diff line number Diff line change 16
16
"ChromaVersion" : {
17
17
"Description" : " Chroma version to install" ,
18
18
"Type" : " String" ,
19
- "Default" : " 1.0.15 "
19
+ "Default" : " 1.0.16 "
20
20
},
21
21
"ChromaOtelCollectionEndpoint" : {
22
22
"Description" : " Chroma OTEL endpoint" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ machine_type = "Standard_B1s" # Azure VM size
4
4
ssh_public_key_path = " ~/.ssh/id_rsa.pub" # Path to your SSH public key
5
5
6
6
instance_name = " chroma-instance"
7
- chroma_version = " 1.0.15 "
7
+ chroma_version = " 1.0.16 "
8
8
chroma_otel_collection_endpoint = " "
9
9
chroma_otel_service_name = " "
10
10
chroma_otel_collection_headers = " {}"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ variable "machine_type" {
17
17
18
18
variable "chroma_version" {
19
19
description = " Chroma version to install"
20
- default = " 1.0.15 "
20
+ default = " 1.0.16 "
21
21
}
22
22
23
23
variable "chroma_server_auth_credentials" {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ project_id = "your-gcp-project-id"
2
2
region = " your-region" # e.g., "us-central1"
3
3
zone = " your-zone"
4
4
machine_type = " "
5
- chroma_version = " 1.0.15 "
5
+ chroma_version = " 1.0.16 "
6
6
chroma_otel_collection_endpoint = " "
7
7
chroma_otel_service_name = " "
8
8
chroma_otel_collection_headers = " "
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ variable "machine_type" {
23
23
24
24
variable "chroma_version" {
25
25
description = " Chroma version to install"
26
- default = " 1.0.15 "
26
+ default = " 1.0.16 "
27
27
}
28
28
29
29
variable "chroma_server_auth_credentials" {
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " chroma-cli"
3
- version = " 1.1.4 "
3
+ version = " 1.1.5 "
4
4
edition = " 2021"
5
5
6
6
[dependencies ]
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if ($isAdmin) {
13
13
$expectedInstallPath = Join-Path $expectedInstallDir " chroma.exe"
14
14
15
15
$repo = " chroma-core/chroma"
16
- $release = " cli-1.1.4 "
16
+ $release = " cli-1.1.5 "
17
17
$asset = " chroma-windows.exe"
18
18
19
19
$downloadUrl = " https://github.com/$repo /releases/download/$release /$asset "
Original file line number Diff line number Diff line change 7
7
# curl -sSL https://raw.githubusercontent.com/chroma-core/chroma/main/rust/cli/install/install.sh | bash
8
8
# ----------------------------------------------
9
9
REPO=" chroma-core/chroma"
10
- RELEASE=" cli-1.1.4 "
10
+ RELEASE=" cli-1.1.5 "
11
11
12
12
OS=$( uname -s)
13
13
ARCH=$( uname -m)
You can’t perform that action at this time.
0 commit comments