Skip to content

Commit

Permalink
see version changelog 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stasvinokur committed Feb 4, 2025
1 parent 1a1149a commit be60934
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [7.0.1] - 04/02/2025
This version was written and tested on Python 3.13.1

#### Fixes

- Minor fixes

## [7.0.0] - 14/08/2024
This version was written and tested on Python 3.11.1

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Svinokur
Copyright (c) 2025 stasvinokur

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Downloads](https://static.pepy.tech/badge/selenium-driver-updater/month)](https://pepy.tech/project/selenium-driver-updater)
[![Downloads](https://static.pepy.tech/badge/selenium-driver-updater/week)](https://pepy.tech/project/selenium-driver-updater)

[![Build](https://github.com/Svinokur/selenium_driver_updater/actions/workflows/build.yml/badge.svg)](https://github.com/Svinokur/selenium_driver_updater/actions/workflows/build.yml)
[![Build](https://github.com/stasvinokur/selenium_driver_updater/actions/workflows/build.yml/badge.svg)](https://github.com/stasvinokur/selenium_driver_updater/actions/workflows/build.yml)

It is a fast and convenience package that can automatically download or update Selenium webdriver binaries and their browsers for different OS.

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 @@ -87,7 +87,7 @@

@dataclass
class info:
version = "7.0.0"
version = "7.0.1"

setting = dict(
{
Expand Down
2 changes: 1 addition & 1 deletion selenium_driver_updater/driverUpdater.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def __check_library_is_up_to_date() -> None:
message = 'Note that beta version does not guarantee errors avoiding. If something goes wrong - please create an issue on github repository'
logger.info(message)

message = 'Github repository link: https://github.com/Svinokur/selenium_driver_updater'
message = 'Github repository link: https://github.com/stasvinokur/selenium_driver_updater'
logger.info(message)

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion selenium_driver_updater/test/setting_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def test_check_count_params(settings):
assert len(settings["PyPi"]) == 1

def test_check_values_params(settings):
assert settings["Program"]["version"] == "7.0.0"
assert settings["Program"]["version"] == "7.0.1"
assert settings["Program"]["wedriverVersionPattern"] == r'([0-9.]*\.[0-9]+)'
assert settings["Program"]["driversPath"] == base_dir + 'test' + os.path.sep + 'drivers' + os.path.sep
file_format = ".exe" if platform.system() == 'Windows' else ''
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@

setup(
name='selenium_driver_updater',
version='7.0.0',
version='7.0.1',
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',
url='https://github.com/Svinokur/selenium_driver_updater',
url='https://github.com/stasvinokur/selenium_driver_updater',
author='Stanislav Vinokur',
author_email='stasvinokur@yahoo.com',
license='MIT',
Expand Down

0 comments on commit be60934

Please sign in to comment.