Skip to content

Commit c7a6f3b

Browse files
committed
add post_install_message for 5.3.1
1 parent 728bb73 commit c7a6f3b

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 5.3.1 (2023-07-31)
2+
* Add post_install_message to explain status of gem
3+
14
# 5.3.0 (2023-07-31)
25
* Add support for Chrome for Testing drivers ([#237](https://github.com/titusfortner/webdrivers/issues/249), thanks sadahiro-ono)
36
* Support is restricted to Selenium 4.0 - 4.10 to encourage people to update to Selenium 4.11

lib/webdrivers/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Webdrivers
4-
VERSION = '5.3.0'
4+
VERSION = '5.3.1'
55
end

webdrivers.gemspec

+12
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,16 @@ Gem::Specification.new do |s|
3939
s.add_runtime_dependency 'nokogiri', '~> 1.6'
4040
s.add_runtime_dependency 'rubyzip', '>= 1.3.0'
4141
s.add_runtime_dependency 'selenium-webdriver', '~> 4.0', '< 4.11'
42+
43+
s.post_install_message = <<~ENDBANNER
44+
Webdrivers gem update options
45+
*****************************
46+
47+
Selenium itself now manages drivers by default: https://www.selenium.dev/documentation/selenium_manager
48+
* If you are using Ruby 3+ — please update to Selenium 4.11+ and stop requiring this gem
49+
* If you are using Ruby 2.6+ and Selenium 4.0+ — this version will work for now
50+
* If you use Ruby < 2.6 or Selenium 3, a 6.0 version of this gem with additional support is planned
51+
52+
Restrict your gemfile to "webdrivers", "= 5.3.0" to stop seeing this message
53+
ENDBANNER
4254
end

0 commit comments

Comments
 (0)