Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

5.0.0 release #325

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading