Skip to content

Commit b555dde

Browse files
committed
0.2.1 RC 1
1 parent 7046524 commit b555dde

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,16 @@ ArrayKit requires the following:
3737
What is New in ArrayKit
3838
-------------------------
3939

40+
0.2.1
41+
............
42+
43+
Implemented ``count_iteration``, ``split_after_count``.
44+
45+
4046
0.2.0
4147
............
4248

43-
Implemented ``delimited_to_arrays``, ``iterable_str_to_array_1d``
49+
Implemented ``delimited_to_arrays``, ``iterable_str_to_array_1d``.
4450

4551

4652
0.1.13

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66
from pathlib import Path
77

8-
AK_VERSION = '0.2.0'
8+
AK_VERSION = '0.2.1'
99

1010
def get_long_description() -> str:
1111
return '''The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.

src/__init__.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def delimited_to_arrays(
4747

4848
def split_after_count(
4949
string: str,
50-
*
5150
delimiter: str,
5251
count: int,
5352
) -> tp.Tuple[str, str]: ...

0 commit comments

Comments
 (0)