diff --git a/README.rst b/README.rst index f3828658..b1272a2b 100644 --- a/README.rst +++ b/README.rst @@ -38,6 +38,12 @@ What is New in ArrayKit ------------------------- +0.7.2 +............ + +Improved ``array_to_tuple_array()`` and ``array_to_tuple_iter()`` to preserve ``tuple`` in 1D arrays. + + 0.7.1 ............ diff --git a/setup.py b/setup.py index 0def4834..2b9a40f6 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup from pathlib import Path -AK_VERSION = '0.7.1' +AK_VERSION = '0.7.2' def get_long_description() -> str: return '''The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.