Skip to content

Commit

Permalink
add post_install_message for 5.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jul 31, 2023
1 parent 728bb73 commit c7a6f3b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
# 5.3.1 (2023-07-31)
* Add post_install_message to explain status of gem

# 5.3.0 (2023-07-31)
* Add support for Chrome for Testing drivers ([#237](https://github.com/titusfortner/webdrivers/issues/249), thanks sadahiro-ono)
* Support is restricted to Selenium 4.0 - 4.10 to encourage people to update to Selenium 4.11
Expand Down
2 changes: 1 addition & 1 deletion lib/webdrivers/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Webdrivers
VERSION = '5.3.0'
VERSION = '5.3.1'
end
12 changes: 12 additions & 0 deletions webdrivers.gemspec
Expand Up @@ -39,4 +39,16 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'nokogiri', '~> 1.6'
s.add_runtime_dependency 'rubyzip', '>= 1.3.0'
s.add_runtime_dependency 'selenium-webdriver', '~> 4.0', '< 4.11'

s.post_install_message = <<~ENDBANNER
Webdrivers gem update options
*****************************
Selenium itself now manages drivers by default: https://www.selenium.dev/documentation/selenium_manager
* If you are using Ruby 3+ — please update to Selenium 4.11+ and stop requiring this gem
* If you are using Ruby 2.6+ and Selenium 4.0+ — this version will work for now
* If you use Ruby < 2.6 or Selenium 3, a 6.0 version of this gem with additional support is planned
Restrict your gemfile to "webdrivers", "= 5.3.0" to stop seeing this message
ENDBANNER
end

0 comments on commit c7a6f3b

Please sign in to comment.