From 9d079037fb416b39ec48e473628e84c7b1da9358 Mon Sep 17 00:00:00 2001 From: Pedro Rodriguez Date: Thu, 31 Dec 2015 14:33:54 -0700 Subject: [PATCH] Release 0.5.0 --- CHANGELOG.md | 1 + functional/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51ab737..72693bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## Next Release +## Release 0.5.0 ### New Features * Added delimiter option on `to_file` * `Sequence.sliding` to create a sliding window from a list of elements diff --git a/functional/__init__.py b/functional/__init__.py index dff861e..e11ad77 100644 --- a/functional/__init__.py +++ b/functional/__init__.py @@ -9,7 +9,7 @@ __author__ = "Pedro Rodriguez" __copyright__ = "Copyright 2015, Pedro Rodriguez" __license__ = "MIT" -__version__ = "0.4.1" +__version__ = "0.5.0" __maintainer__ = "Pedro Rodriguez" __email__ = "ski.rodriguez@gmail.com" __status__ = "Development" diff --git a/setup.py b/setup.py index 54b1362..8f76fa6 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ license='MIT', keywords='functional LINQ pipeline data collection rdd scala', packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'test']), - version='0.4.1', + version='0.5.0', install_requires=['future', 'six'], classifiers=[ 'Development Status :: 4 - Beta',