Skip to content

Commit

Permalink
2.0.0 release updates (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd authored Apr 15, 2021
1 parent 1b7c6a5 commit df96eee
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Changelog
^^^^^^^^^

Pantab 2.0.0 (2021-04-15)
=========================

Special thanks to `Adrian Vogelsgesang <https://github.com/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)
=========================

Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pantab/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit df96eee

Please sign in to comment.