From 99c2c55298e9b315df4f1646bdbac99ca905cfab Mon Sep 17 00:00:00 2001 From: Gaetan Jonathan Date: Sun, 14 Nov 2021 15:26:08 +0300 Subject: [PATCH] =?UTF-8?q?Release=20=F0=9F=8E=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 2 +- setup.py | 2 +- websearch/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 3ed2db5..f6755d7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = WebSearch -version = 1.1.0 +version = 1.1.1 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 be9e974..9f7f0a7 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.0", # The initial release version + version="1.1.1", # 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 ae5572a..8b64e7f 100644 --- a/websearch/__init__.py +++ b/websearch/__init__.py @@ -1,6 +1,6 @@ from .script import WebSearch from . import __main__ -__version__ = '1.1.0' +__version__ = '1.1.1' __author__ = 'iTeam-$' __license__ = 'MIT' __all__ = ['WebSearch', '__main__']