Skip to content

Commit ce07447

Browse files
authored
[RELEASE] CLI 1.2.2 Python 1.3.5 JS 3.1.5 (#5880)
1 parent 303a346 commit ce07447

File tree

20 files changed

+27
-26
lines changed

20 files changed

+27
-26
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chromadb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105

106106
__settings = Settings()
107107

108-
__version__ = "1.3.4"
108+
__version__ = "1.3.5"
109109

110110

111111
# Workaround to deal with Colab's old sqlite3 version

clients/new-js/packages/ai-embeddings/all/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chroma-core/all",
3-
"version": "0.1.9",
3+
"version": "0.1.10",
44
"private": false,
55
"description": "All AI embedding providers for Chroma",
66
"main": "dist/cjs/index.cjs",
@@ -50,7 +50,8 @@
5050
"@chroma-core/voyageai": "workspace:^",
5151
"@chroma-core/chroma-bm25": "workspace:^",
5252
"@chroma-core/chroma-cloud-qwen": "workspace:^",
53-
"@chroma-core/chroma-cloud-splade": "workspace:^"
53+
"@chroma-core/chroma-cloud-splade": "workspace:^",
54+
"@chroma-core/sentence-transformer": "workspace:^"
5455
},
5556
"engines": {
5657
"node": ">=20"

clients/new-js/packages/chromadb/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chromadb",
3-
"version": "3.1.4",
3+
"version": "3.1.5",
44
"description": "A JavaScript interface for chroma",
55
"keywords": [
66
"chroma",
@@ -73,11 +73,11 @@
7373
"wait-on": "^8.0.3"
7474
},
7575
"optionalDependencies": {
76-
"chromadb-js-bindings-darwin-arm64": "^1.1.0",
77-
"chromadb-js-bindings-darwin-x64": "^1.1.0",
78-
"chromadb-js-bindings-linux-arm64-gnu": "^1.1.0",
79-
"chromadb-js-bindings-linux-x64-gnu": "^1.1.0",
80-
"chromadb-js-bindings-win32-x64-msvc": "^1.1.0"
76+
"chromadb-js-bindings-darwin-arm64": "^1.1.1",
77+
"chromadb-js-bindings-darwin-x64": "^1.1.1",
78+
"chromadb-js-bindings-linux-arm64-gnu": "^1.1.1",
79+
"chromadb-js-bindings-linux-x64-gnu": "^1.1.1",
80+
"chromadb-js-bindings-win32-x64-msvc": "^1.1.1"
8181
},
8282
"engines": {
8383
"node": ">=20"

deployments/aws/chroma.cf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"ChromaVersion": {
1717
"Description": "Chroma version to install",
1818
"Type": "String",
19-
"Default": "1.3.4"
19+
"Default": "1.3.5"
2020
},
2121
"ChromaOtelCollectionEndpoint": {
2222
"Description": "Chroma OTEL endpoint",

deployments/azure/chroma.tfvars.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ machine_type = "Standard_B1s" # Azure VM size
44
ssh_public_key_path = "~/.ssh/id_rsa.pub" # Path to your SSH public key
55

66
instance_name = "chroma-instance"
7-
chroma_version = "1.3.4"
7+
chroma_version = "1.3.5"
88
chroma_otel_collection_endpoint = ""
99
chroma_otel_service_name = ""
1010
chroma_otel_collection_headers = "{}"

deployments/azure/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ variable "machine_type" {
1717

1818
variable "chroma_version" {
1919
description = "Chroma version to install"
20-
default = "1.3.4"
20+
default = "1.3.5"
2121
}
2222

2323
variable "chroma_server_auth_credentials" {

deployments/gcp/chroma.tfvars

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ project_id = "your-gcp-project-id"
22
region = "your-region" # e.g., "us-central1"
33
zone = "your-zone"
44
machine_type = ""
5-
chroma_version = "1.3.4"
5+
chroma_version = "1.3.5"
66
chroma_otel_collection_endpoint = ""
77
chroma_otel_service_name = ""
88
chroma_otel_collection_headers = ""

deployments/gcp/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ variable "machine_type" {
2323

2424
variable "chroma_version" {
2525
description = "Chroma version to install"
26-
default = "1.3.4"
26+
default = "1.3.5"
2727
}
2828

2929
variable "chroma_server_auth_credentials" {

rust/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "chroma-cli"
3-
version = "1.2.1"
3+
version = "1.2.2"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)