diff --git a/CHANGELOG.md b/CHANGELOG.md index 5190cab..4e08503 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -### Edge ### +### 1.14.0 ### #### Features #### * Driver#network_traffic will return blocked page requests if passed :blocked (Kyle Rippey) diff --git a/README.md b/README.md index 592614b..dd4a179 100644 --- a/README.md +++ b/README.md @@ -193,10 +193,9 @@ visit(login_path) page.driver.headers # => { "User-Agent" => "Poltergeist" } ``` -This way your temporary headers will be sent only for the initial request, all -subsequent request will only contain your permanent headers. -However the temporary headers will still be sent on 30x redirects. If the -headers should not be sent on redirects, specify `permanent: :no_redirect`. +This way your temporary headers will be sent only for the initial request, and related 30x redirects. All +subsequent request will only contain your permanent headers. If the temporary +headers should not be sent on related 30x redirects, specify `permanent: :no_redirect`. ### Inspecting network traffic ### diff --git a/lib/capybara/poltergeist/version.rb b/lib/capybara/poltergeist/version.rb index 9c40ab8..44e9f83 100644 --- a/lib/capybara/poltergeist/version.rb +++ b/lib/capybara/poltergeist/version.rb @@ -1,5 +1,5 @@ module Capybara module Poltergeist - VERSION = "1.13.0" + VERSION = "1.14.0" end end