Skip to content

Commit

Permalink
updated to version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RonenNess committed Oct 9, 2021
1 parent f038254 commit 90db098
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ Note that the tests are not included in the pypi package, so to run them please

## Changes

### 1.0.3

- Removed 'raise StopIteration' to support Python > 3.5.

### 1.0.2

- Fixed imports for Python 3.
Expand Down
2 changes: 1 addition & 1 deletion grepfunc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__all__ = ['grep', 'grep_iter', ]

__title__ = 'grepfunc'
__version__ = '1.0.1'
__version__ = '1.0.3'
__author__ = 'Ronen Ness'
__license__ = 'MIT'

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
name='grepfunc',
packages=['grepfunc'],
package_data={'grepfunc' : ["*.py", "README.md"], },
version='1.0.2',
version='1.0.3',
description='Unix\'s grep, implemented as a Python function.',
author='Ronen Ness',
author_email='[email protected]',
url='https://github.com/RonenNess/grepfunc',
download_url='https://github.com/RonenNess/grepfunc/tarball/1.0.1',
download_url='https://github.com/RonenNess/grepfunc/tarball/1.0.3',
keywords=['grep', 'regex', 'filter', 'search', 'strings'],
classifiers=[],
)

0 comments on commit 90db098

Please sign in to comment.