1
0
Fork 0
mirror of https://github.com/teampoltergeist/poltergeist.git synced 2022-11-09 12:05:00 -05:00

Prepare for 1.17.0 release

This commit is contained in:
Thomas Walpole 2017-12-12 08:22:20 -08:00
parent 733b084a32
commit 1ab6ceef73
3 changed files with 6 additions and 5 deletions

View file

@ -1,4 +1,4 @@
### Master ###
### 1.17.0 ###
#### Features ####
* Support Capybara Session#evaluate_async_script (Thomas Walpole)

View file

@ -9,7 +9,7 @@ provided by [PhantomJS](http://phantomjs.org/).
**If you're viewing this at https://github.com/teampoltergeist/poltergeist,
you're reading the documentation for the master branch.
[View documentation for the latest release
(1.16.0).](https://github.com/teampoltergeist/poltergeist/tree/v1.16.0)**
(1.17.0).](https://github.com/teampoltergeist/poltergeist/tree/v1.17.0)**
## Getting help ##
@ -80,7 +80,7 @@ guide](http://phantomjs.org/build.html).)
## Compatibility ##
Poltergeist runs on MRI 1.9, JRuby 1.9 and Rubinius 1.9. Poltergeist
Poltergeist runs on MRI 1.9+, JRuby 1.9+ and Rubinius 1.9+. Poltergeist
and PhantomJS are currently supported on Mac OS X, Linux, and Windows
platforms.
@ -89,7 +89,8 @@ was 1.0.2, so you should use that if you still need Ruby 1.8 support.
PhantomJS does not support ES6 features at the time of writing this
document. Setting `js_errors` to `true` can help determine if failing
tests require Polyfills.
tests require Polyfills, although a bug in PhantomJS can cause silent
failures if using ES6 features like `let`, `const`, etc.
## Running on a CI ##

View file

@ -2,6 +2,6 @@
module Capybara
module Poltergeist
VERSION = "1.16.0"
VERSION = "1.17.0"
end
end