Skip to content

Commit dff3a78

Browse files
authored
[RELEASE] CLI 1.1.5, Python 1.0.16, JS 3.0.11 (#5227)
## Description of changes * CLI 1.1.15 * Python 1.0.16 * JS 3.0.11
1 parent f60f932 commit dff3a78

File tree

17 files changed

+22
-22
lines changed

17 files changed

+22
-22
lines changed

chromadb/__init__.py

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

5757
__settings = Settings()
5858

59-
__version__ = "1.0.15"
59+
__version__ = "1.0.16"
6060

6161

6262
# 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.0.10",
3+
"version": "3.0.11",
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.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"
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.0.15"
19+
"Default": "1.0.16"
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.0.15"
7+
chroma_version = "1.0.16"
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.0.15"
20+
default = "1.0.16"
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.0.15"
5+
chroma_version = "1.0.16"
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.0.15"
26+
default = "1.0.16"
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.1.4"
3+
version = "1.1.5"
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.1.4"
16+
$release = "cli-1.1.5"
1717
$asset = "chroma-windows.exe"
1818

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

rust/cli/install/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77
# curl -sSL https://raw.githubusercontent.com/chroma-core/chroma/main/rust/cli/install/install.sh | bash
88
# ----------------------------------------------
99
REPO="chroma-core/chroma"
10-
RELEASE="cli-1.1.4"
10+
RELEASE="cli-1.1.5"
1111

1212
OS=$(uname -s)
1313
ARCH=$(uname -m)

0 commit comments

Comments
 (0)