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 305d244..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" @@ -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" 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