Skip to content

Commit 701d745

Browse files
committed
VER: Release 0.41.0
1 parent 08415cc commit 701d745

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.41.0 - TBD
3+
## 0.41.0 - 2024-09-03
44

55
#### Enhancements
66
- Added `databento.read_dbn` alias

databento/common/validation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def validate_smart_symbol(symbol: str) -> str:
274274
return ".".join(tokens)
275275

276276

277-
_D = TypeVar("_D", bound=Callable[..., Any])
277+
_D = TypeVar("_D", bound=Callable) # type: ignore [type-arg]
278278

279279

280280
def deprecated(name: str | None = None) -> Callable[[_D], _D]:

databento/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.40.0"
1+
__version__ = "0.41.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "databento"
3-
version = "0.40.0"
3+
version = "0.41.0"
44
description = "Official Python client library for Databento"
55
authors = [
66
"Databento <support@databento.com>",

0 commit comments

Comments
 (0)