Skip to content

Commit

Permalink
Release 3.5.0 (#241)
Browse files Browse the repository at this point in the history
* [#234] rollback to secrets.GITHUB_TOKEN in case of https://dev.to/github/the-githubtoken-in-github-actions-how-it-works-change-permissions-customizations-3cgp

* bump version 3.4.2 -> 3.5.0 and update CHANGELOG.md

* reduce test matrix to [3.6, 3.10] python versions
  • Loading branch information
aleksandr-kotlyar authored Oct 9, 2021
1 parent afa3aa6 commit 5b29748
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.6', '3.10' ]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Run tests on Linux (with xvfb)
if: runner.os == 'Linux'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: GabrielBB/[email protected]
with:
run: |
Expand All @@ -63,14 +63,14 @@ jobs:
- name: Run tests on Windows (without xvfb)
if: runner.os == 'Windows'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pipenv run py.test -sv --cov-config .coveragerc --cov-report xml --cov-report term:skip-covered --cov=webdriver_manager --tb=short tests/
- name: Run tests on MacOS (without xvfb)
if: startsWith(runner.os, 'macOS')
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pipenv run py.test -sv --cov-config .coveragerc --cov-report xml --cov-report term:skip-covered --cov=webdriver_manager --tb=short tests/
Expand Down
17 changes: 8 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,19 @@

## 3.5.0
### Fixes
- Fix: WinError6 while executing script, packed in .exe by pyinstaller
- Fix: stdio problem when making exe using pyinstaller with noconsole flag
- Fix: error with execution right on linux afer extraction from zip
- Fix: In Manager.DriverManager constructor named argument log_level is never passed to log()
- Fix: first-line not hidden when logs disabled
- Fix: WinError6 while executing script, packed in .exe by pyinstaller (#198)
- Fix: stdio problem when making exe using pyinstaller with noconsole flag (#198)
- Fix: error with execution right on linux afer extraction from zip (#208)
- Fix: In Manager.DriverManager constructor named argument log_level is never passed to log() (#172
- Fix: first-line not hidden when logs disabled (#212)

### Features
- Download IEDriverServer from GitHub (#227)

### Other
- webdriver_manager tested on 3.6, **3.7, 3.8, 3.9, 3.10** (#235)
- webdriver_manager supports 3.6, 3.7, 3.8, **3.9, 3.10** (#235)
- webdriver_manager releases to pypi on publishing GitHub release (#238)
- renamed ci token from GITHUB_TOKEN to GH_TOKEN (#234)
- webdriver_manager now tests on 3.6, **3.7, 3.8, 3.9, 3.10** (#235)
- webdriver_manager now supports not only 3.6, 3.7, 3.8, but also **3.9, 3.10** (#235) (tbh always has been)
- webdriver_manager now releases to pypi by clicking "Publish GitHub release" button (#238)
---

lots releases ago...
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.4.1
current_version = 3.5.0
commit = True
tag = True

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=['tests']),
include_package_data=True,
version='3.4.3',
version='3.5.0',
description=('Library provides the way to automatically manage drivers for different browsers'),
author='Sergey Pirogov',
author_email='[email protected]',
Expand All @@ -36,6 +36,8 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: '
'Libraries :: Python Modules',
'Operating System :: Microsoft :: Windows',
Expand Down
2 changes: 1 addition & 1 deletion webdriver_manager/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.4.3'
__version__ = '3.5.0'

0 comments on commit 5b29748

Please sign in to comment.