Skip to content

Commit 1d5d4b6

Browse files
authored
Merge pull request #56 from hubmapconsortium/release-please--branches--main--changes--next
release: 1.0.0-alpha.35
2 parents 688b98b + 4f33050 commit 1d5d4b6

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0-alpha.34"
2+
".": "1.0.0-alpha.35"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.0.0-alpha.35 (2025-10-11)
4+
5+
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)
6+
7+
### Chores
8+
9+
* **internal:** detect missing future annotations with ruff ([a74aba0](https://github.com/hubmapconsortium/search-python-sdk/commit/a74aba062425f278329a95c8f18b53df72da9075))
10+
311
## 1.0.0-alpha.34 (2025-09-20)
412

513
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)

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hubmap_search_sdk"
3-
version = "1.0.0-alpha.34"
3+
version = "1.0.0-alpha.35"
44
description = "The official Python library for the hubmap-search-sdk API"
55
dynamic = ["readme"]
66
license = "MIT"
@@ -224,6 +224,8 @@ select = [
224224
"B",
225225
# remove unused imports
226226
"F401",
227+
# check for missing future annotations
228+
"FA102",
227229
# bare except statements
228230
"E722",
229231
# unused arguments
@@ -246,6 +248,8 @@ unfixable = [
246248
"T203",
247249
]
248250

251+
extend-safe-fixes = ["FA102"]
252+
249253
[tool.ruff.lint.flake8-tidy-imports.banned-api]
250254
"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"
251255

src/hubmap_search_sdk/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "hubmap_search_sdk"
4-
__version__ = "1.0.0-alpha.34" # x-release-please-version
4+
__version__ = "1.0.0-alpha.35" # x-release-please-version

0 commit comments

Comments
 (0)