From 6b9312de722700824630e4d78b05f5b547f5ce33 Mon Sep 17 00:00:00 2001 From: Sven Kreiss Date: Mon, 15 Jun 2015 13:53:57 -0400 Subject: [PATCH] Version 0.2.23 --- HISTORY.rst | 5 ++++- pysparkling/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5e628fa81..6b032afdb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,10 @@ Changelog ========= -* `master `_ +* `master `_ +* `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) * `v0.2.22 `_ (2015-06-12) * added Context.wholeTextFiles() * improved RDD.first() and RDD.take(n) diff --git a/pysparkling/__init__.py b/pysparkling/__init__.py index 06b2c1c6f..73b0cc078 100644 --- a/pysparkling/__init__.py +++ b/pysparkling/__init__.py @@ -1,6 +1,6 @@ """pysparkling module.""" -__version__ = '0.2.22' +__version__ = '0.2.23' from .exceptions import (FileAlreadyExistsException, ConnectionException)