diff --git a/README.rst b/README.rst index 69945fe..e9d07f3 100644 --- a/README.rst +++ b/README.rst @@ -151,6 +151,9 @@ Licensed under the term of `MIT License`_. See attached file LICENSE.txt. Changes ------- +0.66 (2013-07-14) + Fixed lost executable bit with -f option (thanks myint). + 0.65 (2013-07-12) Added -f option to execute code in a separate file/module. Added Travis continuous integration (thanks myint). Fixed python 2.7 support (thanks myint). diff --git a/massedit.py b/massedit.py index 6800469..3dbe704 100755 --- a/massedit.py +++ b/massedit.py @@ -26,7 +26,7 @@ from __future__ import unicode_literals -__version__ = '0.65' # UPDATE setup.py when changing version. +__version__ = '0.66' # UPDATE setup.py when changing version. __author__ = 'Jérôme Lecomte' __license__ = 'MIT' diff --git a/setup.py b/setup.py index 94519b8..b79c738 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="massedit", - version="0.65", + version="0.66", author="Jérôme Lecomte", author_email="jlecomte1972@yahoo.com", description='Edit multiple files using Python text processing modules',