From df96eee4a90a05fae43cbac6a638b90897bf7ef3 Mon Sep 17 00:00:00 2001 From: William Ayd Date: Thu, 15 Apr 2021 16:12:04 -0700 Subject: [PATCH] 2.0.0 release updates (#129) --- doc/source/changelog.rst | 19 +++++++++++++++++++ doc/source/conf.py | 2 +- pantab/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 8d9e11c3..351a80e9 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -1,6 +1,25 @@ Changelog ^^^^^^^^^ +Pantab 2.0.0 (2021-04-15) +========================= + +Special thanks to `Adrian Vogelsgesang `_ for contributing to this release. + +API Breaking Changes +-------------------- + +- Users may now pass an existing connection as the first argument to pantab's read functions. As part of this, the first argument was renamed from ``database`` to ``source`` (#123) + +Enhancements +------------ + +- Added support for Python 3.9 while dropping support for 3.6 (#122) +- A new ``frame_from_hyper_query`` method has been added, providing support for executing SQL statements against a Hyper file (#118) +- Users may now create their own Hyper process and pass it as an argument to the reading and writing functions (#39, #51) +- The value 0001-01-01 will no longer be read as a NULL timestamp (#121) + + Pantab 1.1.1 (2020-11-02) ========================= diff --git a/doc/source/conf.py b/doc/source/conf.py index dd28d1f7..da210431 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -4,7 +4,7 @@ project = 'pantab' copyright = '2019-2020, Will Ayd, innobi, LLC' author = 'Will Ayd, innobi, LLC' -release = '1.1.1' +release = '2.0.0' # -- General configuration --------------------------------------------------- diff --git a/pantab/__init__.py b/pantab/__init__.py index c9129a17..5c661c0c 100644 --- a/pantab/__init__.py +++ b/pantab/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.1.1" +__version__ = "2.0.0" import libpantab # type: ignore from ._reader import frame_from_hyper, frame_from_hyper_query, frames_from_hyper diff --git a/setup.py b/setup.py index 4792ee87..b617c37f 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name="pantab", - version="1.1.1", + version="2.0.0", description="Converts pandas DataFrames into Tableau Hyper Extracts and back", long_description=long_description, long_description_content_type="text/markdown",