From 006786ae6ca1daf077a3b60d1c8b0d543041f374 Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 15 Feb 2024 14:37:17 -0500 Subject: [PATCH 1/2] chore(internal): refactor release environment script (#290) --- bin/check-release-environment | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/check-release-environment b/bin/check-release-environment index 5d113358..49f294c8 100644 --- a/bin/check-release-environment +++ b/bin/check-release-environment @@ -6,9 +6,9 @@ if [ -z "${PYPI_TOKEN}" ]; then errors+=("The FINCH_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.") fi -len=${#errors[@]} +lenErrors=${#errors[@]} -if [[ len -gt 0 ]]; then +if [[ lenErrors -gt 0 ]]; then echo -e "Found the following errors in the release environment:\n" for error in "${errors[@]}"; do From cf8000b9eda3d65dffd0f58dac5b58462d0c676b Mon Sep 17 00:00:00 2001 From: Stainless Bot <107565488+stainless-bot@users.noreply.github.com> Date: Thu, 15 Feb 2024 18:58:49 -0500 Subject: [PATCH 2/2] release: 0.14.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/finch/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 54c4d98a..3d26904f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.14.1" + ".": "0.14.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 30c8c2f1..183ffd6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.14.2 (2024-02-15) + +Full Changelog: [v0.14.1...v0.14.2](https://github.com/Finch-API/finch-api-python/compare/v0.14.1...v0.14.2) + +### Chores + +* **internal:** refactor release environment script ([#290](https://github.com/Finch-API/finch-api-python/issues/290)) ([006786a](https://github.com/Finch-API/finch-api-python/commit/006786ae6ca1daf077a3b60d1c8b0d543041f374)) + ## 0.14.1 (2024-02-08) Full Changelog: [v0.14.0...v0.14.1](https://github.com/Finch-API/finch-api-python/compare/v0.14.0...v0.14.1) diff --git a/pyproject.toml b/pyproject.toml index 08611b1f..23bc1e81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "finch-api" -version = "0.14.1" +version = "0.14.2" description = "The official Python library for the Finch API" readme = "README.md" license = "Apache-2.0" diff --git a/src/finch/_version.py b/src/finch/_version.py index e9bab967..d3b193b5 100644 --- a/src/finch/_version.py +++ b/src/finch/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. __title__ = "finch" -__version__ = "0.14.1" # x-release-please-version +__version__ = "0.14.2" # x-release-please-version