Skip to content

Commit 472f147

Browse files
committed
RELEASE 0.999
1 parent 64b5f36 commit 472f147

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

NEWS.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
PENDING: Dataiter 0.999
2-
=======================
1+
2024-12-15: Dataiter 0.999
2+
==========================
33

44
* `DataFrame.fom_arrow`: Remove `strings_as_object` argument
55
* `DataFrame.from_pandas`: Remove `strings_as_object` argument
@@ -22,6 +22,11 @@ introduced in NumPy 2.0. The main benefit is greatly reduced memory use,
2222
making strings usable without needing to be careful or falling back to
2323
`object`. The note about stability below release 0.99 still applies.
2424

25+
Note that as `StringDType` is only in NumPy >= 2.0, any NPZ or Pickle
26+
files saved cannot be opened using Dataiter < 0.99 and NumPy < 2.0. If
27+
you need that kind of interoperability, consider using the Parquet file
28+
format.
29+
2530
2024-08-17: Dataiter 0.99
2631
=========================
2732

benchmark-versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ set -e
1818
rm -f $OUT_FILE
1919
echo "name,version,elapsed" > $OUT_FILE
2020
cp -fv benchmark.py $SCRIPT
21-
benchmark 0.99
21+
benchmark 0.999
2222
benchmark master
2323
rm -f $SCRIPT $TMP_FILE

dataiter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
from dataiter import util
2727

28-
__version__ = "0.99"
28+
__version__ = "0.999"
2929

3030
DEFAULT_PEEK_ELEMENTS = 10
3131
DEFAULT_PEEK_ITEMS = 3

0 commit comments

Comments
 (0)