diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c9a485e..44a44a6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master +## 0.25.0 (2020-05-27) + ### Deprecations - Deprecated `Wallaby.Phantom`, please switch to `Wallaby.Chrome` or `Wallaby.Selenium` diff --git a/README.md b/README.md index ec349276..2af4c701 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Add Wallaby to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:wallaby, "~> 0.24.0", runtime: false, only: :test} + {:wallaby, "~> 0.25.0", runtime: false, only: :test} ] end ``` @@ -216,7 +216,7 @@ You will also want to add `phoenix_ecto` as a dependency to `MyWebApp`: def deps do [ - {:wallaby, "~> 0.24", only: :test, runtime: false}, + {:wallaby, "~> 0.25.0", only: :test, runtime: false}, {:phoenix_ecto, "~> 3.0", only: :test} ] end diff --git a/mix.exs b/mix.exs index d5439487..41d09b77 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Wallaby.Mixfile do use Mix.Project - @version "0.24.1" + @version "0.25.0" @drivers ~w(phantom selenium chrome) @selected_driver System.get_env("WALLABY_DRIVER") @maintainers [