diff --git a/CHANGELOG.md b/CHANGELOG.md index 83738d79..969cebd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## unreleased +## 0.19.2 (2017-10-28) ### Features * Capture JavaScript logs in chrome @@ -8,6 +8,8 @@ * relax httpoison dependency for easier upgrading and not locking you down * Prevent failing if phantom jsn't installed globally +* Fix issue with zombie phantomjs processes (#224) +* Fix issue where temporary folders for phantomjs processes aren't deleted ## 0.19.1 (2017-08-13) diff --git a/README.md b/README.md index b72e0860..875b5cd3 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ Add Wallaby to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:wallaby, "~> 0.19.1", only: :test}] + [{:wallaby, "~> 0.19.2", only: :test}] end ``` @@ -166,7 +166,7 @@ You will also want to add `phoenix_ecto` as a dependency to `MyWebApp`: def deps do [ - {:wallaby, "~> 0.19.1", only: :test}, + {:wallaby, "~> 0.19.2", only: :test}, {:phoenix_ecto, "~> 3.0", only: :test} ] end diff --git a/mix.exs b/mix.exs index 816c153a..08d702f6 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Wallaby.Mixfile do use Mix.Project - @version "0.19.1" + @version "0.19.2" @drivers ~w(phantom selenium chrome) @selected_driver System.get_env("WALLABY_DRIVER") @maintainers [