Skip to content

Commit fb08a78

Browse files
authored
VER: Release 0.19.1
See release notes.
2 parents 7f0cace + 9582238 commit fb08a78

File tree

6 files changed

+245
-221
lines changed

6 files changed

+245
-221
lines changed

CHANGELOG.md

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

3+
## 0.19.1 - 2023-09-08
4+
5+
#### Bug fixes
6+
- Fixed an issue where the index column was not serialized with `DBNStore.to_json`
7+
- Fixed an issue where timestamps serialized by `DBNStore.to_json` had reduced precision
8+
39
## 0.19.0 - 2023-08-25
410

511
This release includes improvements to handling large DBN data and adds support for future datasets.

databento/common/dbnstore.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,9 +1046,11 @@ def to_json(
10461046

10471047
with open(path, "x") as json_path:
10481048
for frame in df_iter:
1049+
frame.reset_index(inplace=True)
10491050
frame.to_json(
10501051
json_path,
10511052
orient="records",
1053+
date_unit="ns",
10521054
lines=True,
10531055
)
10541056

0 commit comments

Comments
 (0)