From b1069ea872738a6062988fca6dadb01adb0bde04 Mon Sep 17 00:00:00 2001 From: Christopher Ariza Date: Thu, 18 May 2023 16:17:30 -0700 Subject: [PATCH] 0.4.2 RC 1 --- README.rst | 4 +++- setup.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 660cf5dd..26c02dcb 100644 --- a/README.rst +++ b/README.rst @@ -37,13 +37,15 @@ ArrayKit requires the following: What is New in ArrayKit ------------------------- -0.4.2-dev +0.4.2 ............ Added ``slice_to_ascending_slice()``. Updated ``BlockIndex.shape`` to internally cache the shape tuple. +Corrected ``BlockIndex.iter_select()`` handling of negative integers in sequences. + 0.4.1 ............ diff --git a/setup.py b/setup.py index 2b9c2962..1314c3b3 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup from pathlib import Path -AK_VERSION = '0.4.1' +AK_VERSION = '0.4.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.