From f90411fc3355f5dd5a1d3b005df3442d97371bd6 Mon Sep 17 00:00:00 2001 From: Rob Adams Date: Wed, 22 May 2019 13:29:40 -0700 Subject: [PATCH] Update version to 0.11.0 (#295) * Update version * Update version in docs --- README.md | 2 +- docs/installing.md | 2 +- mix.exs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c0674e2..9d5037a 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ add additional support. ``` def deps do [{:distillery, "~> 2.0", runtime: false}, - {:bootleg, "~> 0.10", runtime: false}] + {:bootleg, "~> 0.11", runtime: false}] end ``` diff --git a/docs/installing.md b/docs/installing.md index 8904c08..0a49930 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.10", runtime: false}] + {:bootleg, "~> 0.11", runtime: false}] end ``` diff --git a/mix.exs b/mix.exs index 701e264..60b8e5c 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Bootleg.Mixfile do use Mix.Project - @version "0.10.0" + @version "0.11.0" @source "https://github.com/labzero/bootleg" @homepage "https://labzero.github.io/bootleg/"