Skip to content

Commit

Permalink
Release 0.19.2 (#329)
Browse files Browse the repository at this point in the history
Updating release notes and version numbers for 0.19.2.
  • Loading branch information
aaronrenner authored Oct 28, 2017
1 parent 5126d4a commit 786e122
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## unreleased
## 0.19.2 (2017-10-28)

### Features
* Capture JavaScript logs in chrome
Expand All @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -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 [
Expand Down

0 comments on commit 786e122

Please sign in to comment.