diff --git a/CHANGELOG.md b/CHANGELOG.md index ed16197..bce554a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.72.0 - 2026-02-26 + +#### Enhancements +- Upgraded `databento-dbn` to 0.50.0: + - Added `SkippedRecordsAfterSlowReading` to the `ErrorCode` enum for gateway errors originating + from slow client catch-up. + ## 0.71.0 - 2026-02-17 #### Enhancements diff --git a/README.md b/README.md index 9bdf2de..58cea78 100644 --- a/README.md +++ b/README.md @@ -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.49.0" +- databento-dbn = "~0.50.0" - numpy = ">=1.23.5" - pandas = ">=1.5.3" - pip-system-certs = ">=4.0" (Windows only) diff --git a/databento/version.py b/databento/version.py index 5537ba3..6000099 100644 --- a/databento/version.py +++ b/databento/version.py @@ -1 +1 @@ -__version__ = "0.71.0" +__version__ = "0.72.0" diff --git a/pyproject.toml b/pyproject.toml index aca4d13..632195d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "databento" -version = "0.71.0" +version = "0.72.0" description = "Official Python client library for Databento" readme = "README.md" requires-python = ">=3.10" @@ -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.49.0", + "databento-dbn~=0.50.0", "numpy>=1.23.5; python_version < '3.12'", "numpy>=1.26.0; python_version >= '3.12'", "pandas>=1.5.3,<4.0.0",