From 199ce8acb8db0cafe58abb2b61f7082c025ebf2a Mon Sep 17 00:00:00 2001 From: Renan Gemignani Date: Thu, 19 Feb 2026 18:49:40 +0100 Subject: [PATCH 1/3] ADD: New error code for slow reader catchup --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed16197..df5c9df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.72.0 - TBD +- Added `SkippedRecordsAfterSlowReading` to the `ErrorCode` enum for gateway errors originating + from slow client catch-up. + ## 0.71.0 - 2026-02-17 #### Enhancements From b9bff75f8508df57b5b6408dce3abcdfbdd10847 Mon Sep 17 00:00:00 2001 From: Nick Macholl Date: Tue, 24 Feb 2026 16:55:36 -0800 Subject: [PATCH 2/3] MOD: Upgrade databento-dbn to 0.50.0 --- CHANGELOG.md | 7 +++++-- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df5c9df..3719958 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,11 @@ # Changelog ## 0.72.0 - TBD -- Added `SkippedRecordsAfterSlowReading` to the `ErrorCode` enum for gateway errors originating - from slow client catch-up. + +#### 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 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/pyproject.toml b/pyproject.toml index aca4d13..529215d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", From 84dba40c904378cc94bc3352127b07b9165c99ee Mon Sep 17 00:00:00 2001 From: Nick Macholl Date: Wed, 25 Feb 2026 17:46:38 -0700 Subject: [PATCH 3/3] VER: Release 0.72.0 --- CHANGELOG.md | 2 +- databento/version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3719958..bce554a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.72.0 - TBD +## 0.72.0 - 2026-02-26 #### Enhancements - Upgraded `databento-dbn` to 0.50.0: 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 529215d..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"