diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fea34540..a8f71224 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0" + ".": "1.0.1" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 43162274..1e286bf2 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 17 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/groqcloud%2Fgroqcloud-2c4683b6cf3c31fe903d6b314823be4440c5f1c3db00545bca9534a816179fed.yml openapi_spec_hash: 4fad55cf0c3fc26500f4030edf31b64d -config_hash: eca7e3cb24b18c605dd1bc936da8ef3e +config_hash: 6468f67ad7c0d0333daea97b2f5403a4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 98b25829..abae02a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.0.1 (2025-12-28) + +Full Changelog: [v1.0.0...v1.0.1](https://github.com/groq/groq-python/compare/v1.0.0...v1.0.1) + +### Chores + +* **internal:** add `--fix` argument to lint script ([d511519](https://github.com/groq/groq-python/commit/d511519cb5aff218d9497949a9c330091c29879c)) + ## 1.0.0 (2025-12-17) Full Changelog: [v0.37.1...v1.0.0](https://github.com/groq/groq-python/compare/v0.37.1...v1.0.0) diff --git a/pyproject.toml b/pyproject.toml index b54bdb25..26b878ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "groq" -version = "1.0.0" +version = "1.0.1" description = "The official Python library for the groq API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/scripts/lint b/scripts/lint index 4e30547f..d2c9cfaa 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 groq' diff --git a/src/groq/_version.py b/src/groq/_version.py index 7520d111..b8e60aac 100644 --- a/src/groq/_version.py +++ b/src/groq/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "groq" -__version__ = "1.0.0" # x-release-please-version +__version__ = "1.0.1" # x-release-please-version