diff --git a/HISTORY.rst b/HISTORY.rst index 6b032afdb..3addd006a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,10 @@ Changelog ========= -* `master `_ +* `master `_ +* `v0.2.24 `_ (2015-06-16) + * replace dill with cloudpickle in docs and test + * add tests with pypy and pypy3 * `v0.2.23 `_ (2015-06-15) * added RDD.randomSplit() * saveAsTextFile() saves single file if there is only one partition (and does not break it out into partitions) diff --git a/pysparkling/__init__.py b/pysparkling/__init__.py index 73b0cc078..916c5f797 100644 --- a/pysparkling/__init__.py +++ b/pysparkling/__init__.py @@ -1,6 +1,6 @@ """pysparkling module.""" -__version__ = '0.2.23' +__version__ = '0.2.24' from .exceptions import (FileAlreadyExistsException, ConnectionException)