Skip to content

Commit

Permalink
Bump v0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Apr 16, 2020
1 parent 21cbe55 commit 77037cd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Master

## 0.24.0 (2020-04-15)

### Improvements

- Enables the ability to set capabilities by passing them as an option and using application configuration.
Expand All @@ -12,6 +14,8 @@

- Moves configuration options for using chrome headlessly, the chrome binary, and the chromedriver binary to the `:chromedriver` key in the `:wallaby` application config.
- Automatic screenshots will now only occur inside the `feature` macro.
- Removed `:create_session_fn` option from `Wallaby.Experimental.Selenium`
- Removed `:end_session_fn` option from `Wallaby.Experimental.Selenium`
- Increases the minimum Elixir version to v1.7.
- Increases the minimum Erlang version to v21.

Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ Add Wallaby to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:wallaby, "~> 0.23.0", [runtime: false, only: :test]}]
[
{:wallaby, "~> 0.24.0", runtime: false, only: :test}
]
end
```

Expand Down Expand Up @@ -204,7 +206,7 @@ You will also want to add `phoenix_ecto` as a dependency to `MyWebApp`:

def deps do
[
{:wallaby, "~> 0.23", only: :test},
{:wallaby, "~> 0.24", 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.23.0"
@version "0.24.0"
@drivers ~w(phantom selenium chrome)
@selected_driver System.get_env("WALLABY_DRIVER")
@maintainers [
Expand Down

0 comments on commit 77037cd

Please sign in to comment.