From 61c1c916175a77f27623eb93fa4ecf42b9a7b7b4 Mon Sep 17 00:00:00 2001 From: Marc Wouts Date: Sun, 26 Mar 2023 19:36:14 +0100 Subject: [PATCH] Version 1.5.2 --- docs/changelog.md | 2 +- itables/datatables_format.py | 2 +- itables/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 52ac33bc..cad8da54 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,7 +1,7 @@ ITables ChangeLog ================= -1.5.2 (2023-03-??) +1.5.2 (2023-03-26) ------------------ **Fixed** diff --git a/itables/datatables_format.py b/itables/datatables_format.py index 1e404e73..201b10ff 100644 --- a/itables/datatables_format.py +++ b/itables/datatables_format.py @@ -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) diff --git a/itables/version.py b/itables/version.py index 5f01efa0..4cd2a72c 100644 --- a/itables/version.py +++ b/itables/version.py @@ -1,3 +1,3 @@ """ITables' version number""" -__version__ = "1.5.2-dev" +__version__ = "1.5.2"