Skip to content

Commit 19177f5

Browse files
authored
Release 9 5 0 (#628)
* Release 9.5.0 * Update release notes * update changelogs * remove doc from release note
1 parent 4219f1d commit 19177f5

File tree

7 files changed

+528
-499
lines changed

7 files changed

+528
-499
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,19 @@ Commit based release not is [release_notes.md](./release_notes.md)
33

44
Release tags are https://github.com/appium/ruby_lib/releases .
55

6+
## v9.5.0
7+
### 1. Enhancements
8+
- Support `selenium-webdriver3.4.1+`
9+
- Support new `createSession`
10+
11+
### 2. Bug fixes
12+
13+
### 3. Deprecations
14+
- Drop `selenium-webdriver` `3.0 ~ 3.4.0` since some methods depends on `selenium-webdriver3.4.1+`
15+
616
## v9.4.10
717
### 1. Enhancements
8-
- some refactors
18+
- some refactoring
919
- add some documentations
1020

1121
### 2. Bug fixes

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ end
238238
# Return true if the comment starts with /^(docs|style|chore):/
239239
def skip_release_note?(comment)
240240
return true if comment == 'Update release notes'
241-
comment =~ /^(docs|style|chore|test):/ ? true : false
241+
comment =~ /^(doc|docs|style|chore|test):/ ? true : false
242242
end
243243

244244
# Used to purge byte order marks that mess up YARD

appium_lib.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
1414
s.require_paths = ['lib']
1515

16-
s.add_runtime_dependency 'selenium-webdriver', '~> 3.4.1'
16+
s.add_runtime_dependency 'selenium-webdriver', '~> 3.4', '>= 3.4.1'
1717
s.add_runtime_dependency 'awesome_print', '~> 1.7'
1818
s.add_runtime_dependency 'json', '>= 1.8'
1919
s.add_runtime_dependency 'tomlrb', '~> 1.1'

0 commit comments

Comments
 (0)