Skip to content

Commit

Permalink
Bump v0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed May 28, 2020
1 parent 0efe229 commit 131de74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Master

## 0.25.0 (2020-05-27)

### Deprecations

- Deprecated `Wallaby.Phantom`, please switch to `Wallaby.Chrome` or `Wallaby.Selenium`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down Expand Up @@ -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
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.24.1"
@version "0.25.0"
@drivers ~w(phantom selenium chrome)
@selected_driver System.get_env("WALLABY_DRIVER")
@maintainers [
Expand Down

0 comments on commit 131de74

Please sign in to comment.