Skip to content

Commit 0ca4bc3

Browse files
committed
VER: Release 0.44.0
1 parent 04cf68c commit 0ca4bc3

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Changelog
22

3-
## 0.44.0 - TBD
3+
## 0.44.0 - 2024-10-22
44

55
#### Enhancements
6+
- Removed deprecated `databento.from_dbn`; `databento.read_dbn` can be used instead
67
- Upgraded `databento-dbn` to 0.23.0
78

9+
#### Bug fixes
10+
- Fixed an issue where `DBNStore.request_symbology` could request the wrong end date
11+
812
## 0.43.1 - 2024-10-15
913

1014
#### Enhancements
@@ -13,7 +17,6 @@
1317

1418
#### Bug fixes
1519
- Fixed an issue where validating the checksum of a batch file loaded the entire file into memory
16-
- Fixed an issue where `DBNStore.request_symbology` could request the wrong end date
1720

1821
## 0.43.0 - 2024-10-09
1922

databento/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
from databento.common.publishers import Venue
4545
from databento.common.symbology import InstrumentMap
4646
from databento.common.types import DBNRecord
47-
from databento.common.validation import deprecated
4847
from databento.historical.client import Historical
4948
from databento.live.client import Live
5049
from databento.reference.client import Reference
@@ -110,7 +109,6 @@
110109

111110
# Convenience imports
112111
enable_logging = bentologging.enable_logging
113-
from_dbn = deprecated("databento.from_dbn")(DBNStore.from_file)
114112
read_dbn = DBNStore.from_file
115113
map_symbols_csv = symbology.map_symbols_csv
116114
map_symbols_json = symbology.map_symbols_json

databento/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.43.1"
1+
__version__ = "0.44.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.43.1"
3+
version = "0.44.0"
44
description = "Official Python client library for Databento"
55
authors = [
66
"Databento <[email protected]>",

0 commit comments

Comments
 (0)