Skip to content

Commit

Permalink
[rb] add cdp v106 remove v103
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Sep 28, 2022
1 parent 3170a49 commit 50c5d6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rb/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ package(default_visibility = ["//:__subpackages__"])

CDP_VERSIONS = [
"v85",
"v103",
"v104",
"v105",
"v106",
]

copy_file(
Expand Down
2 changes: 1 addition & 1 deletion rb/lib/selenium/devtools/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

module Selenium
module DevTools
VERSION = '0.105.0'
VERSION = '0.106.0'
end # DevTools
end # Selenium
1 change: 1 addition & 0 deletions rb/private/gem_builder.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def copy_srcs(from:, to:)
Dir.chdir(from) do
Dir.glob('**/*').each do |src|
dst = File.join(to, src)
raise 'unable to find ' + src unless File.exist?(src)
if File.directory?(src)
FileUtils.mkdir_p(dst)
else
Expand Down

0 comments on commit 50c5d6f

Please sign in to comment.