Skip to content

Commit

Permalink
version set to 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
msztolcman committed Oct 6, 2016
1 parent c20b029 commit 8a99c5b
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 15 deletions.
16 changes: 10 additions & 6 deletions README.md
Expand Up @@ -6,7 +6,7 @@ fileperms
Current stable version
----------------------

1.0.2
1.0.4

Features
--------
Expand Down Expand Up @@ -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!
Expand Down Expand Up @@ -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
Expand Down
17 changes: 11 additions & 6 deletions README.rst
Expand Up @@ -6,7 +6,7 @@ fileperms
Current stable version
----------------------

1.0.2
1.0.4

Features
--------
Expand Down Expand Up @@ -84,29 +84,29 @@ 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>`__:
`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!
Expand Down Expand Up @@ -154,6 +154,11 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ChangeLog
---------

v1.0.4
~~~~~~

- updated README.rst

v1.0.3
~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.0.2
1.0.4
2 changes: 1 addition & 1 deletion fileperms/__init__.py
Expand Up @@ -8,7 +8,7 @@
import re
import stat

__version__ = '1.0.2'
__version__ = '1.0.4'


class Permission(enum.IntEnum):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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/',
Expand Down

0 comments on commit 8a99c5b

Please sign in to comment.