diff --git a/README.md b/README.md index e7a7a7f..ecfa9e8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ Simple deployment and server automation for Elixir. * [Documentation](https://hexdocs.pm/bootleg) - * [Quick Start](https://hexdocs.pm/bootleg/about.html) * [Phoenix support](https://hexdocs.pm/bootleg/phoenix.html) * [Contributing](https://github.com/labzero/bootleg/blob/master/CONTRIBUTING.md) @@ -20,7 +19,7 @@ add additional support. ``` def deps do [{:distillery, "~> 2.0", runtime: false}, - {:bootleg, "~> 0.9", runtime: false}] + {:bootleg, "~> 0.10", runtime: false}] end ``` diff --git a/docs/installing.md b/docs/installing.md index a457afa..8904c08 100644 --- a/docs/installing.md +++ b/docs/installing.md @@ -7,7 +7,7 @@ Add to your `mix.exs` dependencies: ```elixir def deps do [{:distillery, "~> 2.0", runtime: false}, - {:bootleg, "~> 0.8", runtime: false}] + {:bootleg, "~> 0.10", runtime: false}] end ``` diff --git a/mix.exs b/mix.exs index 73630bd..701e264 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Bootleg.Mixfile do use Mix.Project - @version "0.9.0" + @version "0.10.0" @source "https://github.com/labzero/bootleg" @homepage "https://labzero.github.io/bootleg/"