From 0cd9dde34e37a78e9ed0af51445d81bc23b1a7f5 Mon Sep 17 00:00:00 2001 From: Sven Kreiss Date: Sun, 1 May 2016 19:36:47 -0400 Subject: [PATCH] version 0.3.20 --- HISTORY.rst | 8 +++++++- pysparkling/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index ccfe230dc..dae0ebae0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,13 @@ Changelog ========= -* `master `_ +* `master `_ +* `v0.3.20 `_ (2016-05-01) + * Google Storage file system (using ``gs://``) + * dependencies: ``requests`` and ``boto`` are not optional anymore + * ``aggregateByKey()`` and ``foldByKey()`` return RDDs + * Python 3: use ``sys.maxsize`` instead of ``sys.maxint`` + * flake8 linting * `v0.3.19 `_ (2016-03-06) * removed use of ``itertools.tee()`` and replaced with clear ownership of partitions and partition data * replace some remaining use of ``str()`` with ``format()`` diff --git a/pysparkling/__init__.py b/pysparkling/__init__.py index f04e4d1f4..40bc55303 100644 --- a/pysparkling/__init__.py +++ b/pysparkling/__init__.py @@ -1,7 +1,7 @@ """pysparkling module.""" # flake8: noqa -__version__ = '0.3.19' +__version__ = '0.3.20' from .exceptions import (FileAlreadyExistsException, ConnectionException)