From 52067119f6371d1a7fcd5c87ceae13353d683a8d Mon Sep 17 00:00:00 2001 From: Sven Kreiss Date: Sat, 27 May 2017 16:22:17 -0400 Subject: [PATCH] version 0.4.1 --- HISTORY.rst | 6 +++++- pysparkling/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index a668d5901..ce9b1c946 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,11 @@ Changelog ========= -* `master `_ +* `master `_ +* `v0.4.1 `_ (2017-05-27) + * retries for failed partitions + * improve ``pysparkling.streaming.DStream`` + * updates to docs * `v0.4.0 `_ (2017-03-11) * major addition: ``pysparkling.streaming`` * updates to ``RDD.sample()`` diff --git a/pysparkling/__init__.py b/pysparkling/__init__.py index 9ff938bc2..14a8eb240 100644 --- a/pysparkling/__init__.py +++ b/pysparkling/__init__.py @@ -1,7 +1,7 @@ """pysparkling module.""" # flake8: noqa -__version__ = '0.4.0' +__version__ = '0.4.1' from .exceptions import (FileAlreadyExistsException, ConnectionException)