diff --git a/README.md b/README.md index a9d6a7f..7149bbf 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ fileperms Current stable version ---------------------- -1.0.2 +1.0.4 Features -------- @@ -76,21 +76,21 @@ Simplest way is to use Python's built-in package system: 2. Using sources -Download sources from [Github](https://github.com/msztolcman/fileperms/archive/1.0.2.zip): +Download sources from [Github](https://github.com/msztolcman/fileperms/archive/1.0.4.zip): - wget -O 1.0.2.zip https://github.com/msztolcman/fileperms/archive/1.0.2.zip + wget -O 1.0.4.zip https://github.com/msztolcman/fileperms/archive/1.0.4.zip or - curl -o 1.0.2.zip https://github.com/msztolcman/fileperms/archive/1.0.2.zip + curl -o 1.0.4.zip https://github.com/msztolcman/fileperms/archive/1.0.4.zip Unpack: - unzip 1.0.2.zip + unzip 1.0.4.zip And install - cd fileperms-1.0.2 + cd fileperms-1.0.4 python3 setup.py install Voila! @@ -136,6 +136,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ChangeLog --------- +### v1.0.4 + +* updated README.rst + ### v1.0.3 * improved documentation diff --git a/README.rst b/README.rst index 679db81..6f3489a 100644 --- a/README.rst +++ b/README.rst @@ -6,7 +6,7 @@ fileperms Current stable version ---------------------- -1.0.2 +1.0.4 Features -------- @@ -84,29 +84,29 @@ Simplest way is to use Python's built-in package system: 2. Using sources Download sources from -`Github `__: +`Github `__: :: - wget -O 1.0.2.zip https://github.com/msztolcman/fileperms/archive/1.0.2.zip + wget -O 1.0.4.zip https://github.com/msztolcman/fileperms/archive/1.0.4.zip or :: - curl -o 1.0.2.zip https://github.com/msztolcman/fileperms/archive/1.0.2.zip + curl -o 1.0.4.zip https://github.com/msztolcman/fileperms/archive/1.0.4.zip Unpack: :: - unzip 1.0.2.zip + unzip 1.0.4.zip And install :: - cd fileperms-1.0.2 + cd fileperms-1.0.4 python3 setup.py install Voila! @@ -154,6 +154,11 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ChangeLog --------- +v1.0.4 +~~~~~~ + +- updated README.rst + v1.0.3 ~~~~~~ diff --git a/VERSION b/VERSION index e6d5cb8..a6a3a43 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.2 \ No newline at end of file +1.0.4 \ No newline at end of file diff --git a/fileperms/__init__.py b/fileperms/__init__.py index c19b582..4867d5b 100644 --- a/fileperms/__init__.py +++ b/fileperms/__init__.py @@ -8,7 +8,7 @@ import re import stat -__version__ = '1.0.2' +__version__ = '1.0.4' class Permission(enum.IntEnum): diff --git a/setup.py b/setup.py index c6cae44..bb05648 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def validate_python_version(): setup( name='fileperms', - version='1.0.2', + version='1.0.4', description='fileperms is small library for describing file permissions', long_description=long_description, url='http://msztolcman.github.io/fileperms/',