Skip to content

Commit a0375ce

Browse files
authored
Merge branch 'master' into tests-cleanup
2 parents fecd8c8 + b8daf2c commit a0375ce

File tree

5 files changed

+113
-2
lines changed

5 files changed

+113
-2
lines changed

CHANGELOG.rst

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,90 @@ Changelog
22
=========
33

44

5+
v4.2.0 (2024-09-24)
6+
-------------------
7+
8+
New
9+
~~~
10+
- Feat: Add flutter integration driver commands and tests (#1022)
11+
[MummanaSubramanya]
12+
13+
Fix
14+
~~~
15+
- Add missing __init__.py (#1029) [Kazuaki Matsuo]
16+
17+
Other
18+
~~~~~
19+
- Chore(deps-dev): update tox requirement from ~=4.19 to ~=4.20 (#1021)
20+
[dependabot[bot], dependabot[bot]]
21+
22+
Updates the requirements on [tox](https://github.com/tox-dev/tox) to permit the latest version.
23+
- [Release notes](https://github.com/tox-dev/tox/releases)
24+
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
25+
- [Commits](https://github.com/tox-dev/tox/compare/4.19.0...4.20.0)
26+
27+
---
28+
updated-dependencies:
29+
- dependency-name: tox
30+
dependency-type: direct:development
31+
...
32+
- Chore(deps-dev): update tox requirement from ~=4.18 to ~=4.19 (#1020)
33+
[dependabot[bot], dependabot[bot]]
34+
35+
Updates the requirements on [tox](https://github.com/tox-dev/tox) to permit the latest version.
36+
- [Release notes](https://github.com/tox-dev/tox/releases)
37+
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
38+
- [Commits](https://github.com/tox-dev/tox/compare/4.18.0...4.19.0)
39+
40+
---
41+
updated-dependencies:
42+
- dependency-name: tox
43+
dependency-type: direct:development
44+
...
45+
- Update README.md. [Kazuaki Matsuo]
46+
- Chore(deps-dev): update pylint requirement from ~=3.2.6 to ~=3.2.7
47+
(#1019) [dependabot[bot], dependabot[bot]]
48+
49+
Updates the requirements on [pylint](https://github.com/pylint-dev/pylint) to permit the latest version.
50+
- [Release notes](https://github.com/pylint-dev/pylint/releases)
51+
- [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.6...v3.2.7)
52+
53+
---
54+
updated-dependencies:
55+
- dependency-name: pylint
56+
dependency-type: direct:development
57+
...
58+
- Chore(deps): update selenium requirement from ~=4.23 to ~=4.24 (#1018)
59+
[dependabot[bot], dependabot[bot]]
60+
61+
Updates the requirements on [selenium](https://github.com/SeleniumHQ/Selenium) to permit the latest version.
62+
- [Release notes](https://github.com/SeleniumHQ/Selenium/releases)
63+
- [Commits](https://github.com/SeleniumHQ/Selenium/compare/selenium-4.23.0...selenium-4.24.0)
64+
65+
---
66+
updated-dependencies:
67+
- dependency-name: selenium
68+
dependency-type: direct:production
69+
...
70+
- Chore(deps-dev): update black requirement from <24.0.0 to <25.0.0
71+
(#950) [Mykola Mokhnach, dependabot[bot], dependabot[bot]]
72+
73+
* chore(deps-dev): update black requirement from <24.0.0 to <25.0.0
74+
75+
Updates the requirements on [black](https://github.com/psf/black) to permit the latest version.
76+
- [Release notes](https://github.com/psf/black/releases)
77+
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
78+
- [Commits](https://github.com/psf/black/compare/18.3a0...24.1.0)
79+
80+
---
81+
updated-dependencies:
82+
- dependency-name: black
83+
dependency-type: direct:development
84+
...
85+
- Docs: modify readme. [Kazuaki Matsuo]
86+
- Update changelog for 4.1.0. [Kazuaki Matsuo]
87+
88+
589
v4.1.0 (2024-08-17)
690
-------------------
791

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1+
#!/usr/bin/env python
2+
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
115
from .base import FlutterOptions
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python
2+
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44
set -o pipefail
55

66
if [ -z "$PYTHON_BIN_PATH" ]; then
7-
PYTHON_BIN_PATH=$(which python3 || which python || true)
7+
PYTHON_BIN_PATH=$(which python || true)
88
fi
99

1010
export PYTHON_BIN_PATH

script/release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def tag_and_generate_changelog(new_version_num):
7373

7474

7575
def upload_sdist(new_version_num):
76-
push_file = 'dist/Appium-Python-Client-{}.tar.gz'.format(new_version_num)
76+
push_file = 'dist/appium_python_client-{}.tar.gz'.format(new_version_num)
7777
try:
7878
call_bash_script('twine upload "{}"'.format(push_file))
7979
except Exception as e:

0 commit comments

Comments
 (0)