From 257fd646871a9d69ae89857a53aa552a365d2192 Mon Sep 17 00:00:00 2001 From: Sven Kreiss Date: Sun, 7 Jun 2015 19:49:07 -0400 Subject: [PATCH] Version 0.2.21. --- HISTORY.rst | 5 ++++- pysparkling/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f6a6daba0..adbb5c2d5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,10 @@ Changelog ========= -* `master `_ +* `master `_ +* `v0.2.21 `_ (2015-06-07) + * added doc strings and created Sphinx documentation + * implemented allowLocal in ``Context.runJob()`` * `v0.2.19 `_ (2015-06-04) * new IPython demo notebook at ``docs/demo.ipynb`` at https://github.com/svenkreiss/pysparkling/blob/master/docs/demo.ipynb * ``parallelize()`` can take an iterator (used in ``zip()`` now for lazy loading) diff --git a/pysparkling/__init__.py b/pysparkling/__init__.py index 7ea88c848..02e9fb96b 100644 --- a/pysparkling/__init__.py +++ b/pysparkling/__init__.py @@ -1,6 +1,6 @@ """pysparkling module.""" -__version__ = '0.2.20' +__version__ = '0.2.21' from .exceptions import (FileAlreadyExistsException, ConnectionException)