Skip to content

Commit c3e40d9

Browse files
committed
build: 📦 updated package version to 1.0.3
1 parent 47c9c49 commit c3e40d9

2 files changed

Lines changed: 37 additions & 1 deletion

File tree

CHANGES.txt

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
2+
v1.0.3 (2026/05/21)
3+
Highlights:
4+
- Added Python 3.14 support and dropped Python 3.8 support.
5+
- Reworked biothings CLI configuration, pathing, and dataplugin command organization.
6+
- Added MongoDB build cleanup management APIs and commands.
7+
8+
biothings.hub improvements:
9+
- Added prefix support to DataTransformMDB. ([#411](https://github.com/biothings/biothings.api/pull/411))
10+
- Added TAR and Zstandard file handling. ([#424](https://github.com/biothings/biothings.api/pull/424), [#428](https://github.com/biothings/biothings.api/pull/428))
11+
- Added support for custom local uploader and dumper classes in dataplugin manifests. ([#431](https://github.com/biothings/biothings.api/pull/431))
12+
- Added MongoDB build cleanup validation and deletion tooling. ([#437](https://github.com/biothings/biothings.api/pull/437))
13+
14+
biothings.utils improvements:
15+
- Fixed dict_sweep handling for NaN-like values, including pandas.NA and pandas.NaT. ([#442](https://github.com/biothings/biothings.api/pull/442))
16+
- Centralized orjson usage across the library. ([#435](https://github.com/biothings/biothings.api/pull/435))
17+
18+
biothings.web improvements:
19+
- Removed deprecated Google Analytics event support. ([#439](https://github.com/biothings/biothings.api/pull/439))
20+
- Removed old doc_type and deprecated Elasticsearch compatibility code.
21+
- Improved Elasticsearch exception handling and query response behavior.
22+
- Optimized Elasticsearch memory usage when using scroll API.
23+
24+
biothings.cli improvements:
25+
- Added CLI config and pathing commands. ([#418](https://github.com/biothings/biothings.api/pull/418), [#422](https://github.com/biothings/biothings.api/pull/422))
26+
- Added CLI dump mark-success support. ([#423](https://github.com/biothings/biothings.api/pull/423))
27+
- Fixed Typer/rich_utils loading behavior. ([#426](https://github.com/biothings/biothings.api/pull/426))
28+
29+
Misc improvements:
30+
- Updated dependencies and package metadata for Python 3.9+, including tornado, typer, pymongo, orjson, and zstandard.
31+
- Updated GitHub Actions test, build, and publish workflows.
32+
33+
v1.0.2 (2025/10/15)
34+
Bugfix:
35+
- Fixed an import issue in inspector.py that was causing the mapping inspect to fail.
36+
137
v1.0.1 (2025/08/21)
238
Bugfixes:
339
- 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))

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, 1, 0)
11+
version_info = _version_info(1, 0, 3)
1212
__version__ = ".".join(map(str, version_info))
1313

1414

0 commit comments

Comments
 (0)