Skip to content

Commit 0dd55d7

Browse files
Merge branch 'master' into 1.1.x
2 parents 856018e + f297a18 commit 0dd55d7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v1.0.1 (2025/08/21)
2+
Bugfixes:
3+
- 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))
4+
- Fix missing dependencies for building sphinx docs
15
v1.0.0 (2025/07/29)
26
Highlights:
37
- 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, 0)
11+
version_info = _version_info(1, 0, 1)
1212
__version__ = ".".join(map(str, version_info))
1313

1414

0 commit comments

Comments
 (0)