Skip to content

Commit 646004a

Browse files
Fix versioning inconsistency
1 parent a610549 commit 646004a

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# usefulib v1.0
1+
# usefulib v1.0.2
22
A useful library for Python with assorted functions to make small tasks easier.
33

44
## How to install

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
import codecs
33
import os
44

5-
VERSION = '1.0.1'
5+
VERSION = '1.0.2'
66
DESCRIPTION = 'A collection of assorted methods to make small tasks easier..'
77
LONG_DESCRIPTION = """
8-
# usefulib v1.0
8+
# usefulib v1.0.2
99
A useful library for Python with assorted functions to make small tasks easier.
1010
11+
### GitHub Page: https://github.com/hamdivazim/usefulib
12+
1113
## How to install
1214
Install with pip in your terminal, making sure Python is added to PATH:
1315
```

usefulib/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
2-
usefulib v1.0
2+
usefulib v1.0.2
33
Copyright Hamd Waseem (https://github.com/hamdivazim) under the GNU Public License 3.0.
44
55
https://github.com/hamdivazim/usefulib
66
"""
77

8-
__version__ = "1.0.0"
8+
__version__ = "1.0.2"
99

1010
from ._usefulibs import *

usefulib/_usefulibs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
usefulib v1.0
2+
usefulib v1.0.2
33
Copyright Hamd Waseem (https://github.com/hamdivazim) under the GNU Public License 3.0.
44
55
https://github.com/hamdivazim/usefulib

usefulib/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
usefulib v1.0
2+
usefulib v1.0.2
33
Copyright Hamd Waseem (https://github.com/hamdivazim) under the GNU Public License 3.0.
44
55
https://github.com/hamdivazim/usefulib

0 commit comments

Comments
 (0)