Skip to content

Commit

Permalink
RELEASE 0.46
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Sep 5, 2023
1 parent 6188326 commit 6fc240e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PENDING: Dataiter 0.46
======================
2023-09-05: Dataiter 0.46
=========================

* `DataFrame.count`: New method, shorthand for
`data.group_by(...).aggregate(n=di.count())`
Expand Down
2 changes: 1 addition & 1 deletion benchmark-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -e
rm -f $OUTPUT_FILE
echo "name,version,elapsed" > $OUTPUT_FILE
cp -fv benchmark.py $SCRIPT
for VERSION in 0.45 master; do
for VERSION in 0.46 master; do
benchmark $VERSION
done
rm -f $SCRIPT $TMP_FILE
2 changes: 1 addition & 1 deletion dataiter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

from dataiter import util

__version__ = "0.45"
__version__ = "0.46"

DEFAULT_PEEK_ELEMENTS = 10
DEFAULT_PEEK_ITEMS = 3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="dataiter",
version="0.45",
version="0.46",
author="Osmo Salomaa",
author_email="[email protected]",
description="Classes for data manipulation",
Expand Down

0 comments on commit 6fc240e

Please sign in to comment.