diff --git a/CHANGES.txt b/CHANGES.txt index 408d976..d45095d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1 +1,2 @@ +v1.0.1, 2013/1/28 -- Ensuring the pypi package install correctly v1.0.0, 2013/9/8 -- MVP complete diff --git a/MANIFEST.in b/MANIFEST.in index ab30e9a..3a6a904 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include *.txt +include *.rst diff --git a/encryptedfile/__init__.py b/encryptedfile/__init__.py index 9b5460d..05c4906 100644 --- a/encryptedfile/__init__.py +++ b/encryptedfile/__init__.py @@ -4,4 +4,4 @@ # * this stuff is worth it, you can buy me a beer in return ################################################################################ -__version__ = (1, 0, 0) +__version__ = (1, 0, 1) diff --git a/setup.py b/setup.py index 1594b4e..4508358 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='encryptedfile', - version='1.0.0', + version='1.0.1', author='thenoviceoof', author_email='thenoviceoof@gmail.com', packages=['encryptedfile'],