From 8e7937fbfd118640a68320d7dc5fe9008dbf0131 Mon Sep 17 00:00:00 2001 From: Christopher Ariza Date: Fri, 21 Jun 2024 11:20:05 -0700 Subject: [PATCH] 0.7.0 RC 1 --- README.rst | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 3be5d899..2f3bf1b2 100644 --- a/README.rst +++ b/README.rst @@ -37,6 +37,14 @@ ArrayKit requires the following: What is New in ArrayKit ------------------------- +0.7.0 +............ + +Added ``array2d_to_array1d()``. + +Added ``array2d_tuple_iter()``. + + 0.6.3 ............ diff --git a/setup.py b/setup.py index 253ae931..e8b881fa 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup from pathlib import Path -AK_VERSION = '0.6.3' +AK_VERSION = '0.7.0' 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.