diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 433ed77a..dddbae50 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "4.46.3" + ".": "4.46.4" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 10f84eaa..b3a9d31c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 118 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-59c57f1cbc067a477f6bf673882c28065e01418b86fcff390bba0d4438c58105.yml openapi_spec_hash: 4da2681664f766985d1c20df40240cd9 -config_hash: 895e36fb2d717958770fd4cf883f4b74 +config_hash: 05c94c0e6dbeab2c9b554c2e0d6371a0 diff --git a/CHANGELOG.md b/CHANGELOG.md index fb25f507..75af3dc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 4.46.4 (2025-12-18) + +Full Changelog: [v4.46.3...v4.46.4](https://github.com/orbcorp/orb-python/compare/v4.46.3...v4.46.4) + +### Chores + +* **internal:** add `--fix` argument to lint script ([a63545c](https://github.com/orbcorp/orb-python/commit/a63545cbdd128e08ca89cdbb9050d28c56e4022f)) + ## 4.46.3 (2025-12-17) Full Changelog: [v4.46.2...v4.46.3](https://github.com/orbcorp/orb-python/compare/v4.46.2...v4.46.3) diff --git a/pyproject.toml b/pyproject.toml index 1a1da989..ab2889fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "orb-billing" -version = "4.46.3" +version = "4.46.4" description = "The official Python library for the orb API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/scripts/lint b/scripts/lint index 38b82fa1..6d6cf944 100755 --- a/scripts/lint +++ b/scripts/lint @@ -4,8 +4,13 @@ set -e cd "$(dirname "$0")/.." -echo "==> Running lints" -rye run lint +if [ "$1" = "--fix" ]; then + echo "==> Running lints with --fix" + rye run fix:ruff +else + echo "==> Running lints" + rye run lint +fi echo "==> Making sure it imports" rye run python -c 'import orb' diff --git a/src/orb/_version.py b/src/orb/_version.py index 4a711619..e3c3d2b4 100644 --- a/src/orb/_version.py +++ b/src/orb/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "orb" -__version__ = "4.46.3" # x-release-please-version +__version__ = "4.46.4" # x-release-please-version