Skip to content

Commit

Permalink
Version 0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
oddaspa authored Oct 1, 2024
1 parent 6e890d5 commit d3abf14
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ Changes are grouped as follows
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [0.6.6] - 2024-09-30

## Fixed

- Bug where DataFrame did not allow nan values.

## [0.6.5] - 2024-09-17

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/pyclarify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
)
import pyclarify.query

__version__ = "0.6.5"
__version__ = "0.6.6"
__API_version__ = "1.1"
2 changes: 1 addition & 1 deletion src/pyclarify/views/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def __add__(self, other):
except TypeError as e:
raise TypeError(source=self, other=other) from e

model_config = ConfigDict(allow_inf_nan=False, json_encoders={datetime: time_to_string}, extra="forbid")
model_config = ConfigDict(ser_json_inf_nan='null', json_encoders={datetime: time_to_string}, extra="forbid")

DataFrame.model_rebuild()

Expand Down

0 comments on commit d3abf14

Please sign in to comment.