diff --git a/CHANGELOG.md b/CHANGELOG.md index a074e275..dc832718 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/lib/webdrivers/version.rb b/lib/webdrivers/version.rb index a57cd6a7..d765a804 100644 --- a/lib/webdrivers/version.rb +++ b/lib/webdrivers/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Webdrivers - VERSION = '5.3.0' + VERSION = '5.3.1' end diff --git a/webdrivers.gemspec b/webdrivers.gemspec index a5c68bb8..cf12f1de 100644 --- a/webdrivers.gemspec +++ b/webdrivers.gemspec @@ -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