From a958bc71bd9438321a36444e056080855c49b6b7 Mon Sep 17 00:00:00 2001 From: Sven Kreiss Date: Sat, 18 Jun 2016 14:03:48 -0400 Subject: [PATCH] version 0.3.22 --- HISTORY.rst | 5 ++++- pysparkling/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d63704f53..c13cb9a53 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,10 @@ Changelog ========= -* `master `_ +* `master `_ +* `v0.3.22 `_ (2016-06-18) + * reimplement RDD.groupByKey() + * clean up of docstrings * `v0.3.21 `_ (2016-05-31) * faster text file reading by using ``io.TextIOWrapper`` for decoding * `v0.3.20 `_ (2016-05-01) diff --git a/pysparkling/__init__.py b/pysparkling/__init__.py index 4b32268f5..16de49119 100644 --- a/pysparkling/__init__.py +++ b/pysparkling/__init__.py @@ -1,7 +1,7 @@ """pysparkling module.""" # flake8: noqa -__version__ = '0.3.21' +__version__ = '0.3.22' from .exceptions import (FileAlreadyExistsException, ConnectionException)