Skip to content

Commit abba8f9

Browse files
authored
[RELEASE] Python 1.3.1, JS 3.1.1, CLI 1.2.1 (#5789)
Release to fix CLI `--version`
1 parent a22959d commit abba8f9

File tree

19 files changed

+27
-27
lines changed

19 files changed

+27
-27
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
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.0"
108+
__version__ = "1.3.1"
109109

110110

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

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.0",
3+
"version": "3.1.1",
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.0.9",
77-
"chromadb-js-bindings-darwin-x64": "^1.0.9",
78-
"chromadb-js-bindings-linux-arm64-gnu": "^1.0.9",
79-
"chromadb-js-bindings-linux-x64-gnu": "^1.0.9",
80-
"chromadb-js-bindings-win32-x64-msvc": "^1.0.9"
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"
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.0"
19+
"Default": "1.3.1"
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.0"
7+
chroma_version = "1.3.1"
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.0"
20+
default = "1.3.1"
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.0"
5+
chroma_version = "1.3.1"
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.0"
26+
default = "1.3.1"
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.0"
3+
version = "1.2.1"
44
edition = "2021"
55

66
[dependencies]

rust/cli/install/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if ($isAdmin) {
1313
$expectedInstallPath = Join-Path $expectedInstallDir "chroma.exe"
1414

1515
$repo = "chroma-core/chroma"
16-
$release = "cli-1.2.0"
16+
$release = "cli-1.2.1"
1717
$asset = "chroma-windows.exe"
1818

1919
$downloadUrl = "https://github.com/$repo/releases/download/$release/$asset"

0 commit comments

Comments
 (0)