From 12f1efae1aec1275d205266b83fce37522a71a21 Mon Sep 17 00:00:00 2001 From: Sven Kreiss Date: Tue, 26 May 2015 17:51:13 -0400 Subject: [PATCH] Version 0.2.8 --- README.rst | 6 +++++- pysparkling/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index ddc212122..a5cdc6e1e 100644 --- a/README.rst +++ b/README.rst @@ -209,7 +209,11 @@ Infers ``.gz`` and ``.bz2`` compressions from the file name. Changelog ========= -* `master `_ +* `master `_ +* `v0.2.8 `_ (2015-05-26) + * parallelized text file reading (and made it lazy) + * parallelized take() and takeSample() that only computes required data partitions + * add example: access Human Microbiome Project * `v0.2.6 `_ (2015-05-21) * factor out ``fileio.fs`` and ``fileio.codec`` modules * merge ``WholeFile`` into ``File`` diff --git a/pysparkling/__init__.py b/pysparkling/__init__.py index f7febabdd..2bc1191c9 100644 --- a/pysparkling/__init__.py +++ b/pysparkling/__init__.py @@ -1,6 +1,6 @@ """pytld module.""" -__version__ = '0.2.7' +__version__ = '0.2.8' from .exceptions import FileAlreadyExistsException