diff --git a/README.md b/README.md index 4a1bd4e..0fada14 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ The package can be installed by adding `:unplug` to your list of dependencies in ```elixir def deps do [ - {:unplug, "~> 1.0.0"} + {:unplug, "~> 1.1.0"} ] end ``` @@ -211,10 +211,10 @@ plug Unplug, Unplug provides the following composition predicates out of the box: -| Predicate | Description | -| ------------------------ | -----------------------------------------------------------------------------------| -| `Unplug.Compose.All` | Given a list of predicates, execute the plug if all of the predicates return true. | -| `Unplug.Compose.Any` | Given a list of predicates, execute the plug if any of the predicates return true. | +| Predicate | Description | +| -------------------- | ---------------------------------------------------------------------------------- | +| `Unplug.Compose.All` | Given a list of predicates, execute the plug if all of the predicates return true. | +| `Unplug.Compose.Any` | Given a list of predicates, execute the plug if any of the predicates return true. | ## Attribution diff --git a/mix.exs b/mix.exs index da8efa4..7679b76 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Unplug.MixProject do def project do [ app: :unplug, - version: "1.0.0", + version: "1.1.0", elixir: "~> 1.8", elixirc_paths: elixirc_paths(Mix.env()), name: "Unplug",