Skip to content

Commit

Permalink
see version 5.1.6 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Svinokur committed Nov 14, 2022
1 parent 74018d1 commit ac43546
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion selenium_driver_updater/_setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

@dataclass
class info:
version = "5.1.5"
version = "5.1.6"

setting = dict(
{
Expand Down
2 changes: 1 addition & 1 deletion selenium_driver_updater/driver_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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",
Expand Down

0 comments on commit ac43546

Please sign in to comment.