diff --git a/CHANGELOG.md b/CHANGELOG.md index 07a1428..1283ee4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [5.1.6] - 14/11/2022 +This version was written and tested on Python 3.10.8 + +#### Fixes + +- Minor fixes + ## [5.1.5] - 09/11/2022 This version was written and tested on Python 3.10.8 diff --git a/selenium_driver_updater/_setting.py b/selenium_driver_updater/_setting.py index 7ca50ae..3205427 100644 --- a/selenium_driver_updater/_setting.py +++ b/selenium_driver_updater/_setting.py @@ -82,7 +82,7 @@ @dataclass class info: - version = "5.1.5" + version = "5.1.6" setting = dict( { diff --git a/selenium_driver_updater/driver_base.py b/selenium_driver_updater/driver_base.py index 8c81646..822a0d0 100644 --- a/selenium_driver_updater/driver_base.py +++ b/selenium_driver_updater/driver_base.py @@ -212,7 +212,7 @@ def _compare_current_version_and_latest_version_github(self) -> Tuple[bool, str, if current_version == latest_version: is_driver_up_to_date = True - message = (f'Your existing {self.driver_name} is up to date.' + message = (f'Your existing {self.driver_name} is up to date. ' f'current_version: {current_version} latest_version: {latest_version}') logger.info(message) diff --git a/setup.py b/setup.py index 11b4831..667dcff 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( name='selenium_driver_updater', - version='5.1.5', + version='5.1.6', description='Download or update your Selenium driver binaries and their browsers automatically with this package', long_description=long_description, long_description_content_type='text/markdown', @@ -43,7 +43,7 @@ classifiers=classifiers, keywords=keywords, packages=packages, - install_requires=['wget', 'requests', 'selenium', 'beautifulsoup4'], + install_requires=['wget', 'requests', 'selenium', 'beautifulsoup4', 'xmltodict'], entry_points={ "console_scripts": [ "selenium_driver_updater = selenium_driver_updater.consoleUpdater:ConsoleUpdater.install",