Skip to content

Commit 48d0082

Browse files
committed
Fix versioning
1 parent 9d1e8f8 commit 48d0082

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111

12-
<h1>usefulib v1.0.3</h1>
12+
<h1>usefulib v1.0.4</h1>
1313
A useful library for Python with <em>a lot</em> of assorted functions to make numerous small tasks easier.
1414

1515
## How to install

setup.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
from setuptools import setup, find_packages
2-
import codecs
3-
import os
42

5-
VERSION = '1.0.3'
6-
DESCRIPTION = 'A collection of assorted methods to make small tasks easier..'
3+
VERSION = '1.0.4'
4+
DESCRIPTION = 'A collection of assorted methods to make small tasks easier.'
75
LONG_DESCRIPTION = """
86
<div align="center">
97
<img src="https://github.com/hamdivazim/usefulib/raw/main/logo.png">
@@ -16,7 +14,7 @@
1614
1715
1816
19-
<h1>usefulib v1.0.2</h1>
17+
<h1>usefulib v1.0.4</h1>
2018
A useful library for Python with <em>a lot</em> of assorted functions to make numerous small tasks easier.
2119
2220
### GitHub Page: https://github.com/hamdivazim/usefulib

usefulib/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
2-
usefulib v1.0.3
2+
usefulib v1.0.4
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.3"
8+
__version__ = "1.0.4"
99

1010
from ._usefulibs import *

usefulib/_usefulibs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
usefulib v1.0.3
2+
usefulib v1.0.4
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
usefulib v1.0.3
2+
usefulib v1.0.4
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)