Skip to content

Commit 155cf7b

Browse files
authored
[RELEASE] 0.5.23 (#3247)
Release 0.5.23
1 parent 4a7fd0a commit 155cf7b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

chromadb/__init__.py

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

4646
__settings = Settings()
4747

48-
__version__ = "0.5.22"
48+
__version__ = "0.5.23"
4949

5050

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

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": "0.5.22"
19+
"Default": "0.5.23"
2020
},
2121
"ChromaServerAuthCredentials": {
2222
"Description": "Chroma authentication credentials",

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 = "0.5.22"
7+
chroma_version = "0.5.23"
88
chroma_server_auth_credentials = ""
99
chroma_server_auth_provider = ""
1010
chroma_auth_token_transport_header = ""

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 = "0.5.22"
20+
default = "0.5.23"
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 = "0.5.22"
5+
chroma_version = "0.5.23"
66
chroma_server_auth_credentials = ""
77
chroma_server_auth_provider = ""
88
chroma_auth_token_transport_header = ""

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 = "0.5.22"
26+
default = "0.5.23"
2727
}
2828

2929
variable "chroma_server_auth_credentials" {

0 commit comments

Comments
 (0)