From 6547cd097bdcd348fc4d3ad37e893ab71c39a2e0 Mon Sep 17 00:00:00 2001 From: Tim Savannah Date: Sun, 18 Jun 2017 01:15:45 -0400 Subject: [PATCH] 2.1.1 --- ChangeLog | 3 +++ PopLines/__init__.py | 4 ++-- doc/PopLines.html | 4 ++-- setup.py | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9bceb05..7102a7a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +* 2.1.1 - Jun 18 2017 +- Fix pydoc link + * 2.1.0 - Jun 18 2017 - Update some typos in docs - pydoc diff --git a/PopLines/__init__.py b/PopLines/__init__.py index 5ea2717..77dba70 100755 --- a/PopLines/__init__.py +++ b/PopLines/__init__.py @@ -28,8 +28,8 @@ # these - Remove specific lines, 1-origin. numLines is an array of 1-origin line numbers to remove. POP_TYPES = ('head', 'tail', 'random', 'range', 'these') -__version__ = '2.1.0' -__version_tuple__ = (2, 1, 0) +__version__ = '2.1.1' +__version_tuple__ = (2, 1, 1) __all__ = ('POP_TYPES', 'popLines', 'popHead', 'popTail', 'popRandom', 'popRange', 'popThese') diff --git a/doc/PopLines.html b/doc/PopLines.html index 4bbd8d1..733ca1c 100644 --- a/doc/PopLines.html +++ b/doc/PopLines.html @@ -6,7 +6,7 @@
 
- 
PopLines (version 2.1.0)
index
+ 
PopLines (version 2.1.1)
index

#    Copyright (c) 2016, 2017 Timothy Savannah All Rights Reserved
#  under terms of the GPL version 2. You should have recieved a copy of this with distribution,
#  as LICENSE. You may also find the full text at https://github.com/kata198/popLines/LICENSE
@@ -93,5 +93,5 @@         POP_TYPES = ('head', 'tail', 'random', 'range', 'these')
__all__ = ('POP_TYPES', 'popLines', 'popHead', 'popTail', 'popRandom', 'popRange', 'popThese')
-__version_tuple__ = (2, 1, 0) +__version_tuple__ = (2, 1, 1)

\ No newline at end of file diff --git a/setup.py b/setup.py index 3a07ef0..7b7d3f4 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ long_description = summary setup(name='popLines', - version='2.1.0', + version='2.1.1', scripts=['popHead', 'popTail', 'popRandom', 'popRange', 'popThese'], modules=['PopLines'], packages=['PopLines'],