From 57c7c7afc88d67adb4363bb1dd33fc585e729b10 Mon Sep 17 00:00:00 2001 From: David Potter Date: Thu, 4 Apr 2024 16:38:21 -0700 Subject: [PATCH] fix: Add mongodb env variables to ingest-test-fixtures-update-pr.yaml (#2851) ingest-test-fixtures-update-pr.yaml was missing mongodb vars. And the workflow was failing. --- .github/workflows/ingest-test-fixtures-update-pr.yml | 2 ++ CHANGELOG.md | 8 ++++++++ unstructured/__version__.py | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ingest-test-fixtures-update-pr.yml b/.github/workflows/ingest-test-fixtures-update-pr.yml index adf7633a64..d585634663 100644 --- a/.github/workflows/ingest-test-fixtures-update-pr.yml +++ b/.github/workflows/ingest-test-fixtures-update-pr.yml @@ -71,6 +71,8 @@ jobs: HUBSPOT_API_TOKEN: ${{ secrets.HUBSPOT_API_TOKEN }} JIRA_INGEST_API_TOKEN: ${{ secrets.JIRA_INGEST_API_TOKEN }} JIRA_INGEST_USER_EMAIL: ${{ secrets.JIRA_INGEST_USER_EMAIL }} + MONGODB_URI: ${{ secrets.MONGODB_URI }} + MONGODB_DATABASE_NAME: ${{ secrets.MONGODB_DATABASE_NAME }} MS_CLIENT_CRED: ${{ secrets.MS_CLIENT_CRED }} MS_CLIENT_ID: ${{ secrets.MS_CLIENT_ID }} MS_TENANT_ID: ${{ secrets.MS_TENANT_ID }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 38acf16211..a5be867fb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.13.2-dev0 + +### Enhancements + +### Features + +### Fixes + ## 0.13.1 ### Enhancements diff --git a/unstructured/__version__.py b/unstructured/__version__.py index e07eb1cbf5..aae35d8ef5 100644 --- a/unstructured/__version__.py +++ b/unstructured/__version__.py @@ -1 +1 @@ -__version__ = "0.13.1" # pragma: no cover +__version__ = "0.13.2-dev0" # pragma: no cover