Skip to content

Commit 5c3e375

Browse files
authored
[RELEASE] CLI 1.2.3, Python 1.3.6, JS 3.1.7 (#6004)
Release - CLI 1.2.3 - Python 1.3.6 - JS 3.1.7 Adding support for sample app installation with dataset on CLI
1 parent 8963e1d commit 5c3e375

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
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.5"
108+
__version__ = "1.3.6"
109109

110110

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chromadb",
3-
"version": "3.1.6",
3+
"version": "3.1.7",
44
"description": "A JavaScript interface for chroma",
55
"keywords": [
66
"chroma",

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.5"
19+
"Default": "1.3.6"
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.5"
7+
chroma_version = "1.3.6"
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.5"
20+
default = "1.3.6"
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.5"
5+
chroma_version = "1.3.6"
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.5"
26+
default = "1.3.6"
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.2"
3+
version = "1.2.3"
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.2"
16+
$release = "cli-1.2.3"
1717
$asset = "chroma-windows.exe"
1818

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

0 commit comments

Comments
 (0)