Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.73.0 - 2026-03-10

#### Enhancements
- Upgraded `databento-dbn` to 0.51.0:
- Added logic to set `code` when upgrading version 1 `ErrorMsg` to newer versions

## 0.72.0 - 2026-02-26

#### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The library is fully compatible with distributions of Anaconda 2023.x and above.
The minimum dependencies as found in the `pyproject.toml` are also listed below:
- python = "^3.10"
- aiohttp = "^3.8.3"
- databento-dbn = "~0.50.0"
- databento-dbn = "~0.51.0"
- numpy = ">=1.23.5"
- pandas = ">=1.5.3"
- pip-system-certs = ">=4.0" (Windows only)
Expand Down
2 changes: 1 addition & 1 deletion databento/historical/api/batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def submit_job(
stype_out : SType or str, default 'instrument_id'
The output symbology type to resolve to.
Must be a valid symbology combination with `stype_in`.
See `symbology combinations`. https://www.databento.com/standards-and-conventions/symbology#supported-symbology-combinations
See `symbology combinations`. https://www.databento.com/docs/standards-and-conventions/symbology#supported-symbology-combinations
limit : int, optional
The maximum number of records to return. If `None` then no limit.
Expand Down
2 changes: 1 addition & 1 deletion databento/historical/api/symbology.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def resolve(
stype_out : SType or str, default 'instrument_id'
The output symbology type to resolve to.
Must be a valid symbology combination with `stype_in`.
See `symbology combinations`. https://www.databento.com/standards-and-conventions/symbology#supported-symbology-combinations
See `symbology combinations`. https://www.databento.com/docs/standards-and-conventions/symbology#supported-symbology-combinations
start_date : date or str
The inclusive UTC start date of the request range.
end_date : date or str, optional
Expand Down
4 changes: 2 additions & 2 deletions databento/historical/api/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_range(
stype_out : SType or str, default 'instrument_id'
The output symbology type to resolve to.
Must be a valid symbology combination with `stype_in`.
See `symbology combinations`. https://www.databento.com/standards-and-conventions/symbology#supported-symbology-combinations
See `symbology combinations`. https://www.databento.com/docs/standards-and-conventions/symbology#supported-symbology-combinations
limit : int, optional
The maximum number of records to return. If `None` then no limit.
path : PathLike[str] or str, optional
Expand Down Expand Up @@ -181,7 +181,7 @@ async def get_range_async(
stype_out : SType or str, default 'instrument_id'
The output symbology type to resolve to.
Must be a valid symbology combination with `stype_in`.
See `symbology combinations`. https://www.databento.com/standards-and-conventions/symbology#supported-symbology-combinations
See `symbology combinations`. https://www.databento.com/docs/standards-and-conventions/symbology#supported-symbology-combinations
limit : int, optional
The maximum number of records to return. If `None` then no limit.
path : PathLike[str] or str, optional
Expand Down
2 changes: 1 addition & 1 deletion databento/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.72.0"
__version__ = "0.73.0"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "databento"
version = "0.72.0"
version = "0.73.0"
description = "Official Python client library for Databento"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -10,7 +10,7 @@ dynamic = [ "classifiers" ]
dependencies = [
"aiohttp>=3.8.3,<4.0.0; python_version < '3.12'",
"aiohttp>=3.9.0,<4.0.0; python_version >= '3.12'",
"databento-dbn~=0.50.0",
"databento-dbn~=0.51.0",
"numpy>=1.23.5; python_version < '3.12'",
"numpy>=1.26.0; python_version >= '3.12'",
"pandas>=1.5.3,<4.0.0",
Expand Down