Skip to content

Commit 69a5955

Browse files
committed
Merge origin/master into 1.1.x for release 1.1.0
2 parents 7fc553a + 2eeb86e commit 69a5955

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
v1.0.3 (2026/05/21)
2+
v1.1.0 (2026/05/27)
33
Highlights:
44
- Added Python 3.14 support and dropped Python 3.8 support.
55
- Reworked biothings CLI configuration, pathing, and dataplugin command organization.
@@ -38,6 +38,7 @@ v1.0.1 (2025/08/21)
3838
Bugfixes:
3939
- 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))
4040
- Fix missing dependencies for building sphinx docs
41+
4142
v1.0.0 (2025/07/29)
4243
Highlights:
4344
- 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, 3)
11+
version_info = _version_info(1, 1, 0)
1212
__version__ = ".".join(map(str, version_info))
1313

1414

0 commit comments

Comments
 (0)