diff --git a/.travis.yml b/.travis.yml index 2b7a53c..ee4e759 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,9 +20,6 @@ install: - mix credo script: - mix test -branches: - only: - - master deploy: skip_cleanup: true provider: script diff --git a/README.md b/README.md index 2bd120f..4061cf0 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The package can be installed by adding `divo` to your list of dependencies in `m ```elixir def deps() do [ - {:divo, "~> 1.1.3", only: [:dev, :integration]} + {:divo, "~> 1.1.4", only: [:dev, :integration]} ] end ``` @@ -56,7 +56,7 @@ In your mix file, include the additional dependency #mix.exs def deps() do [ - {:divo, "~> 1.1.3", only: [:dev, :integration]}, + {:divo, "~> 1.1.4", only: [:dev, :integration]}, {:divo_redis, "~> 0.1.0", only: [:dev, :integration]} ] ``` diff --git a/mix.exs b/mix.exs index 0e200c9..ed0a1d0 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Divo.MixProject do def project do [ app: :divo, - version: "1.1.3", + version: "1.1.4", elixir: "~> 1.8", start_permanent: Mix.env() == :prod, deps: deps(),