Skip to content

Commit

Permalink
Version 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mwouts committed Mar 26, 2023
1 parent 5de5756 commit 61c1c91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ITables ChangeLog
=================

1.5.2 (2023-03-??)
1.5.2 (2023-03-26)
------------------

**Fixed**
Expand Down
2 changes: 1 addition & 1 deletion itables/datatables_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def convert_bigints_to_str(df, warn_on_int_to_str_conversion):
if converted and warn_on_int_to_str_conversion:
warnings.warn(
"The columns {} contains integers that are too large for Javascript.\n"
"They have been converted to str.\n"
"They have been converted to str. See https://github.com/mwouts/itables/issues/172.\n"
"To silence this warning, please run:\n"
" import itables.options as opt\n"
" opt.warn_on_int_to_str_conversion = False".format(converted)
Expand Down
2 changes: 1 addition & 1 deletion itables/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""ITables' version number"""

__version__ = "1.5.2-dev"
__version__ = "1.5.2"

0 comments on commit 61c1c91

Please sign in to comment.