From 4da9195870d7782bce3d3b0db27e0f793ea24343 Mon Sep 17 00:00:00 2001 From: Thomas Walpole Date: Mon, 25 Jun 2018 11:11:31 -0700 Subject: [PATCH] Prepare for 3.3.0 release --- History.md | 12 ++++++------ lib/capybara/version.rb | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/History.md b/History.md index ebbb1987a..8cd64bc20 100644 --- a/History.md +++ b/History.md @@ -1,18 +1,18 @@ # Version 3.3.0 -Release date: unreleased - -### Changed - -* Minimum "supported" `selenium-webdriver` is raised to 3.5.0 (but you really should be using newer than that) +Release date: 2018-06-25 ### Added * RackTest driver now handles 307/308 redirects * `execute_async_script` can now be called on elements to run the JS in the context of the element * `:download` filter option on `:link' selector -* Window#fullscreen +* `Window#fullscreen` * `Element#style` and associated matchers +### Changed + +* Minimum "supported" `selenium-webdriver` is raised to 3.5.0 (but you really should be using newer than that) + ### Fixes * Selenium driver with Firefox workaround for clicking on table row - https://github.com/mozilla/geckodriver/issues/1228 diff --git a/lib/capybara/version.rb b/lib/capybara/version.rb index e8cb6359c..7c2cbe831 100644 --- a/lib/capybara/version.rb +++ b/lib/capybara/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Capybara - VERSION = '3.3.0.dev' + VERSION = '3.3.0' end