From 40439457330cd11cb0cd3a67389985bb6b6d4d48 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 02:48:23 +0000 Subject: [PATCH 1/2] chore(ci): skip lint on metadata-only changes Note that we still want to run tests, as these depend on the metadata. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 988acf4..ba492bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: timeout-minutes: 10 name: lint runs-on: ${{ github.repository == 'stainless-sdks/anthale-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} - if: github.event_name == 'push' || github.event.pull_request.head.repo.fork + if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata') steps: - uses: actions/checkout@v6 @@ -35,7 +35,7 @@ jobs: run: ./scripts/lint build: - if: github.event_name == 'push' || github.event.pull_request.head.repo.fork + if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata') timeout-minutes: 10 name: build permissions: From 0bb6de76e2472cfc03dfe670b2fdf0d4b6a88b60 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 25 Mar 2026 02:48:38 +0000 Subject: [PATCH 2/2] release: 0.6.6 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/anthale/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e90b36c..434e4dc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.5" + ".": "0.6.6" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 1699fe9..5af29b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.6.6 (2026-03-25) + +Full Changelog: [v0.6.5...v0.6.6](https://github.com/anthalehq/anthale-python/compare/v0.6.5...v0.6.6) + +### Chores + +* **ci:** skip lint on metadata-only changes ([4043945](https://github.com/anthalehq/anthale-python/commit/40439457330cd11cb0cd3a67389985bb6b6d4d48)) + ## 0.6.5 (2026-03-24) Full Changelog: [v0.6.4...v0.6.5](https://github.com/anthalehq/anthale-python/compare/v0.6.4...v0.6.5) diff --git a/pyproject.toml b/pyproject.toml index dabb504..de29b71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "anthale" -version = "0.6.5" +version = "0.6.6" description = "The official Python library for the anthale API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/anthale/_version.py b/src/anthale/_version.py index ee774b2..6ac288a 100644 --- a/src/anthale/_version.py +++ b/src/anthale/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "anthale" -__version__ = "0.6.5" # x-release-please-version +__version__ = "0.6.6" # x-release-please-version