Skip to content

Commit 75d17e6

Browse files
authored
[RELEASE] 1.0.6 (#4340)
Release 1.0.6
1 parent 357c414 commit 75d17e6

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

chromadb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
__settings = Settings()
5555

56-
__version__ = "1.0.5"
56+
__version__ = "1.0.6"
5757

5858

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

deployments/aws/chroma.cf.json

+1-1
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.5"
19+
"Default": "1.0.6"
2020
},
2121
"ChromaOtelCollectionEndpoint": {
2222
"Description": "Chroma OTEL endpoint",

deployments/azure/chroma.tfvars.tf

+1-1
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.5"
7+
chroma_version = "1.0.6"
88
chroma_otel_collection_endpoint = ""
99
chroma_otel_service_name = ""
1010
chroma_otel_collection_headers = "{}"

deployments/azure/main.tf

+1-1
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.5"
20+
default = "1.0.6"
2121
}
2222

2323
variable "chroma_server_auth_credentials" {

deployments/gcp/chroma.tfvars

+1-1
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.5"
5+
chroma_version = "1.0.6"
66
chroma_otel_collection_endpoint = ""
77
chroma_otel_service_name = ""
88
chroma_otel_collection_headers = ""

deployments/gcp/main.tf

+1-1
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.5"
26+
default = "1.0.6"
2727
}
2828

2929
variable "chroma_server_auth_credentials" {

0 commit comments

Comments
 (0)