From 8cb1c845ada798cd66f29443e8bd7eba1aa12241 Mon Sep 17 00:00:00 2001 From: dpepper Date: Fri, 27 Apr 2018 22:35:54 -0700 Subject: [PATCH] bump version and update changelog --- CHANGES.txt | 2 ++ pluckit/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 12f2b6f..aff9b66 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,5 @@ +v0.3.0, 2018-04-27 + 80232a3 remove multi-handle support because it add too much ambiguity that, so far, is not warrented. advanced plucking should be done with custom functions or a simple for loop instead v0.2.0, 2018-04-27 7ad4f70 relax constraints around handling None, as both input and handles...pluck it 22ad2cd expand corner case coverage diff --git a/pluckit/__init__.py b/pluckit/__init__.py index f977e74..5768b47 100644 --- a/pluckit/__init__.py +++ b/pluckit/__init__.py @@ -1,5 +1,5 @@ __author__ = 'dpepper' -__version__ = '0.2.0' +__version__ = '0.3.0' from .pluck import pluck diff --git a/setup.py b/setup.py index fdfd46a..3fdce52 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ """ __author__ = 'dpepper' -__version__ = '0.2.0' +__version__ = '0.3.0' import setuptools import unittest