diff --git a/setup.cfg b/setup.cfg index f6755d7..6d569a9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = WebSearch -version = 1.1.1 +version = 1.1.2 author = iTeam-$ author_email = contact@iteam-s.xyz description = Python module allowing you to do various searches for links on the Web. diff --git a/setup.py b/setup.py index 6e2a638..4430d43 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="websearch-python", # This is the name of the package - version="1.1.1", # The initial release version + version="1.1.2", # The initial release version author="iTeam-$", # Full name of the author description=""" Python module allowing you to do various searches for links on the Web. diff --git a/websearch/__init__.py b/websearch/__init__.py index 8b64e7f..304e38d 100644 --- a/websearch/__init__.py +++ b/websearch/__init__.py @@ -1,6 +1,6 @@ from .script import WebSearch from . import __main__ -__version__ = '1.1.1' +__version__ = '1.1.2' __author__ = 'iTeam-$' __license__ = 'MIT' __all__ = ['WebSearch', '__main__']