From a74aba062425f278329a95c8f18b53df72da9075 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 11 Oct 2025 02:35:19 +0000 Subject: [PATCH 1/2] chore(internal): detect missing future annotations with ruff --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 305d244..c3da046 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -224,6 +224,8 @@ select = [ "B", # remove unused imports "F401", + # check for missing future annotations + "FA102", # bare except statements "E722", # unused arguments @@ -246,6 +248,8 @@ unfixable = [ "T203", ] +extend-safe-fixes = ["FA102"] + [tool.ruff.lint.flake8-tidy-imports.banned-api] "functools.lru_cache".msg = "This function does not retain type information for the wrapped function's arguments; The `lru_cache` function from `_utils` should be used instead" From 4f33050ff04280680df8adf109c471ea39afec8b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 11 Oct 2025 02:35:35 +0000 Subject: [PATCH 2/2] release: 1.0.0-alpha.35 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/hubmap_search_sdk/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d870483..a3a1da3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.0-alpha.34" + ".": "1.0.0-alpha.35" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c98688e..2455271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.0.0-alpha.35 (2025-10-11) + +Full Changelog: [v1.0.0-alpha.34...v1.0.0-alpha.35](https://github.com/hubmapconsortium/search-python-sdk/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) + +### Chores + +* **internal:** detect missing future annotations with ruff ([a74aba0](https://github.com/hubmapconsortium/search-python-sdk/commit/a74aba062425f278329a95c8f18b53df72da9075)) + ## 1.0.0-alpha.34 (2025-09-20) Full Changelog: [v1.0.0-alpha.33...v1.0.0-alpha.34](https://github.com/hubmapconsortium/search-python-sdk/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) diff --git a/pyproject.toml b/pyproject.toml index c3da046..1618d23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hubmap_search_sdk" -version = "1.0.0-alpha.34" +version = "1.0.0-alpha.35" description = "The official Python library for the hubmap-search-sdk API" dynamic = ["readme"] license = "MIT" diff --git a/src/hubmap_search_sdk/_version.py b/src/hubmap_search_sdk/_version.py index a40680f..e50fd1f 100644 --- a/src/hubmap_search_sdk/_version.py +++ b/src/hubmap_search_sdk/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "hubmap_search_sdk" -__version__ = "1.0.0-alpha.34" # x-release-please-version +__version__ = "1.0.0-alpha.35" # x-release-please-version