Skip to content

Commit

Permalink
[RELEASE] 0.5.16 (#3015)
Browse files Browse the repository at this point in the history
Release 0.5.16
  • Loading branch information
itaismith authored Oct 28, 2024
1 parent 3ae949c commit 4e24261
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 29 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/release-chromadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,32 +242,6 @@ jobs:
removeArtifacts: true
prerelease: true


release-cloudformation:
name: Release CloudFormation
runs-on: ubuntu-latest
needs: release-github # Ensure it runs after the GitHub release
if: ${{ needs.check-tag.outputs.tag_matches == 'true' }} # Only run if tag matches
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set Version
run: |
sed -i "s/LATEST_VERSION/${{ needs.get-version.outputs.version }}/g" ./deployments/aws/chroma.cf.json
cat ./deployments/aws/chroma.cf.json # Optional: output the modified file for verification
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: arn:aws:iam::369178033109:role/github-action-generate-cf-template
aws-region: us-east-1

- name: Upload CloudFormation Template to S3
run: |
aws s3 cp ./deployments/aws/chroma.cf.json s3://public.trychroma.com/cloudformation/latest/chroma.cf.json --acl public-read
release-docs:
name: Deploy docs to Vercel
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion chromadb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

__settings = Settings()

__version__ = "0.5.15"
__version__ = "0.5.16"


# Workaround to deal with Colab's old sqlite3 version
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 = ""
chroma_version = "0.5.16"
chroma_server_auth_credentials = ""
chroma_server_auth_provider = ""
chroma_auth_token_transport_header = ""
Expand Down
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 = "0.5.13"
default = "0.5.16"
}

variable "chroma_server_auth_credentials" {
Expand Down

0 comments on commit 4e24261

Please sign in to comment.