Skip to content

[RELEASE] 1.0.10 #4587

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chromadb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

__settings = Settings()

__version__ = "1.0.9"
__version__ = "1.0.10"


# Workaround to deal with Colab's old sqlite3 version
Expand Down
2 changes: 1 addition & 1 deletion deployments/aws/chroma.cf.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"ChromaVersion": {
"Description": "Chroma version to install",
"Type": "String",
"Default": "1.0.8"
"Default": "1.0.10"
},
"ChromaOtelCollectionEndpoint": {
"Description": "Chroma OTEL endpoint",
Expand Down
2 changes: 1 addition & 1 deletion deployments/azure/chroma.tfvars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ machine_type = "Standard_B1s" # Azure VM size
ssh_public_key_path = "~/.ssh/id_rsa.pub" # Path to your SSH public key

instance_name = "chroma-instance"
chroma_version = "1.0.8"
chroma_version = "1.0.10"
chroma_otel_collection_endpoint = ""
chroma_otel_service_name = ""
chroma_otel_collection_headers = "{}"
2 changes: 1 addition & 1 deletion deployments/azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variable "machine_type" {

variable "chroma_version" {
description = "Chroma version to install"
default = "1.0.8"
default = "1.0.10"
}

variable "chroma_server_auth_credentials" {
Expand Down
2 changes: 1 addition & 1 deletion deployments/gcp/chroma.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_id = "your-gcp-project-id"
region = "your-region" # e.g., "us-central1"
zone = "your-zone"
machine_type = ""
chroma_version = "1.0.8"
chroma_version = "1.0.10"
chroma_otel_collection_endpoint = ""
chroma_otel_service_name = ""
chroma_otel_collection_headers = ""
2 changes: 1 addition & 1 deletion deployments/gcp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ variable "machine_type" {

variable "chroma_version" {
description = "Chroma version to install"
default = "1.0.8"
default = "1.0.10"
}

variable "chroma_server_auth_credentials" {
Expand Down
Loading