Skip to content

Commit 605fef4

Browse files
authored
[RELEASE] Python 1.3.2 (#5801)
## Description of changes _Summarize the changes made by this PR._ - Improvements & Bug fixes - Release python version 1.3.2 - New functionality - ... ## Test plan _How are these changes tested?_ - [ ] Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust ## Migration plan _Are there any migrations, or any forwards/backwards compatibility changes needed in order to make sure this change deploys reliably?_ ## Observability plan _What is the plan to instrument and monitor this change?_ ## Documentation Changes _Are all docstrings for user-facing APIs updated if required? Do we need to make documentation changes in the [docs section](https://github.com/chroma-core/chroma/tree/main/docs/docs.trychroma.com)?_
1 parent 4da9d91 commit 605fef4

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
@@ -105,7 +105,7 @@
105105

106106
__settings = Settings()
107107

108-
__version__ = "1.3.1"
108+
__version__ = "1.3.2"
109109

110110

111111
# 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": "1.3.1"
19+
"Default": "1.3.2"
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.1"
7+
chroma_version = "1.3.2"
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.1"
20+
default = "1.3.2"
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.1"
5+
chroma_version = "1.3.2"
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.1"
26+
default = "1.3.2"
2727
}
2828

2929
variable "chroma_server_auth_credentials" {

0 commit comments

Comments
 (0)