From 6c792ffa4d5c38a1ee164e51a1b71a7c94098937 Mon Sep 17 00:00:00 2001 From: Takuya Kitazawa Date: Fri, 8 May 2020 15:16:08 +0900 Subject: [PATCH] Bump version to v1.3.0 --- CHANGELOG.rst | 10 ++++++++++ pytd/version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ca1003d..482440c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Changelog ========= +v1.3.0 (2020-05-11) +------------------- + +- Enable passing extra keyword arguments (e.g., ``fmt="msgpack"``) to ``pandas_td.to_td``. (`#80 `__) +- Support ``engine_version`` option in query APIs. (`#81 `__) +- Add ``force_tdclient`` option to Presto query interfaces for deterministically using ``tdclient`` rather than ``prestodb``. (`#85 `__) +- Add a precondition check to ``Writer#write_dataframe`` for making sure the type of ``table`` argument. (`#86 `__) +- Documentation updates. (`#82 `__, `#89 `__) + + v1.2.0 (2020-03-18) ------------------- diff --git a/pytd/version.py b/pytd/version.py index c68196d..67bc602 100644 --- a/pytd/version.py +++ b/pytd/version.py @@ -1 +1 @@ -__version__ = "1.2.0" +__version__ = "1.3.0"