Skip to content

Commit

Permalink
5.0.0 release (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd committed Aug 21, 2024
1 parent 06479f5 commit 48339b7
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 9 deletions.
37 changes: 37 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
Changelog
^^^^^^^^^

Pantab 5.0.0 (2024-08-21)
=========================

New Features
------------

Support for Apple Silicon
~~~~~~~~~~~~~~~~~~~~~~~~~

As one of our most requested features, we are happy to announce that pantab now runs natively on Apple Silicon processors without having to use Rosetta 2. This provides significant performance and usability improvements to macOS users with M1 chips or newer. For users of Intel chips, pantab still distributes an x86 wheel.

New Data Type Support
~~~~~~~~~~~~~~~~~~~~~

With the 5.0.0 release, pantab now supports writing decimal data types, akin to those offered by the `decimal <https://docs.python.org/3/library/decimal.html>`_ module built into Python. For users that need precise calculations, these are highly encouraged over floating point data types.

Speaking of floating point...pantab now also offers support for single point precision types. Previously, single point precision values were cast to double point precision when being written to Hyper; now the types can be fully roundtripped.

Faster Datetime Writes
~~~~~~~~~~~~~~~~~~~~~~

In the 5.0.0 release, the performance when writing datetime types (both timezone-aware and timezone-naive) has been improved by about 20%.

Other Features
--------------

- pantab no longer generates a hyperd.log file (#292)
- pantab now defaults to producing Hyper files using database version 4 (#313)
- Improved error message when trying to write an unsupported data type to hyper (#293)
- NumPy is no longer required when building pantab (#315)

Bugfixes
--------

- Fixed issue on Unix systems where an incompatible binary installed via the tableauhyperapi package could interfere with the version bundled into pantab (#302). In theory, this issue may still affect Windows users (see #318)

Pantab 4.1.0 (2024-04-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 @@ -5,7 +5,7 @@
project = "pantab"
copyright = "2019-2024, Will Ayd, innobi, LLC"
author = "Will Ayd, innobi, LLC"
release = "4.1.0"
release = "5.0.0"


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 0 additions & 3 deletions newsfragments/280.feat

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/285.feature

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/287.fix

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "pantab"
version = "4.1.0"
version = "5.0.0"
description = "Converts pandas DataFrames into Tableau Hyper Extracts and back"
license = {file = "LICENSE.txt"}
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/pantab/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "4.1.0"
__version__ = "5.0.0"


from pantab._reader import frame_from_hyper, frame_from_hyper_query, frames_from_hyper
Expand Down

0 comments on commit 48339b7

Please sign in to comment.