From c3aa6690c314517b82d954193e485c7d3aed3711 Mon Sep 17 00:00:00 2001 From: Sven Kreiss Date: Sat, 13 Jul 2019 09:21:21 +0200 Subject: [PATCH] version 0.6.0 --- HISTORY.rst | 6 ++++-- pysparkling/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5f8162a28..35830e7e1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,10 @@ - Changelog ========= -* `master `_ +* `master `_ +* `v0.6.0 `_ (2019-07-13) + * Broadcast, Accumulator and AccumulatorParam by @alexprengere + * support for increasing partition numbers in coalesce and repartition by @tools4origins * `v0.5.0 `_ (2019-05-03) * fixes for HDFS thanks to @tools4origins * fix for empty partitions by @tools4origins diff --git a/pysparkling/__init__.py b/pysparkling/__init__.py index a417cd115..8e3612408 100644 --- a/pysparkling/__init__.py +++ b/pysparkling/__init__.py @@ -1,7 +1,7 @@ """pysparkling module""" # flake8: noqa -__version__ = '0.5.0' +__version__ = '0.6.0' from .rdd import RDD from .context import Context