Skip to content

Commit 2eeb86e

Browse files
committed
Merge branch '1.0.x'
2 parents f297a18 + 18acfe6 commit 2eeb86e

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
2+
v1.0.2 (2025/10/15)
3+
Bugfix:
4+
- Fixed an import issue in inspector.py that was causing the mapping inspect to fail.
5+
16
v1.0.1 (2025/08/21)
27
Bugfixes:
38
- Fixed parameter validation conflict by requiring handler classes with `kwargs` to define a unique `name` attribute. ([#412](https://github.com/biothings/biothings.api/pull/412))
49
- Fix missing dependencies for building sphinx docs
10+
511
v1.0.0 (2025/07/29)
612
Highlights:
713
- Support sqlite3 for the MergerStorage backend, e.g. used in CLI ([#348](https://github.com/biothings/biothings.api/pull/348))

biothings/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class _version_info(NamedTuple):
88
micro: int
99

1010

11-
version_info = _version_info(1, 0, 1)
11+
version_info = _version_info(1, 0, 2)
1212
__version__ = ".".join(map(str, version_info))
1313

1414

biothings/hub/datainspect/inspector.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from biothings.hub import INSPECTOR_CATEGORY
1111
from biothings.hub.databuild.backend import create_backend
1212
from biothings.hub.datainspect.doc_inspect import (
13+
clean_big_nums,
1314
compute_metadata,
1415
flatten_and_validate,
1516
get_converters,

0 commit comments

Comments
 (0)