Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
msztolcman committed May 23, 2022
1 parent 3b1e7bb commit df06f35
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
17 changes: 11 additions & 6 deletions README.md
Expand Up @@ -6,7 +6,7 @@ fileperms
Current stable version
----------------------

1.1.0
1.1.1

Features
--------
Expand Down Expand Up @@ -79,21 +79,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.1.0.zip):
Download sources from [Github](https://github.com/msztolcman/fileperms/archive/1.1.1.zip):

wget -O 1.1.0.zip https://github.com/msztolcman/fileperms/archive/1.1.0.zip
wget -O 1.1.1.zip https://github.com/msztolcman/fileperms/archive/1.1.1.zip

or

curl -o 1.1.0.zip https://github.com/msztolcman/fileperms/archive/1.1.0.zip
curl -o 1.1.1.zip https://github.com/msztolcman/fileperms/archive/1.1.1.zip

Unpack:

unzip 1.1.0.zip
unzip 1.1.1.zip

And install

cd fileperms-1.1.0
cd fileperms-1.1.1
python3 setup.py install

Voila!
Expand Down Expand Up @@ -139,6 +139,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ChangeLog
---------

### v1.1.1
* fixed tests
* minor testing suite reconfig
* updates setup.py

### v1.1.0

* changed minimum Python version to 3.7+
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.1.0
1.1.1
2 changes: 1 addition & 1 deletion fileperms/__init__.py
Expand Up @@ -8,7 +8,7 @@
import re
import stat

__version__ = '1.1.0'
__version__ = '1.1.1'


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.1.0',
version='1.1.1',
description='fileperms is small library for describing file permissions',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit df06f35

Please sign in to comment.