Skip to content

Commit f83335d

Browse files
brienwrjanja
authored andcommitted
Version 0.8 (#253)
* Version 0.8 * Remove misleading output line * Test with Elixir 1.6 * Invalidate CI dependency cache when environment changes
1 parent 15a54fa commit f83335d

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
paths:
2121
- ~/dependencies
2222
- restore_cache:
23-
key: dependencies-cache-{{ checksum ".circleci/config.yml" }}-{{ checksum "mix.lock" }}-{{ arch }}
23+
key: dependencies-cache-{{ checksum ".circleci/config.yml" }}-{{ checksum "script/ci/prepare.sh" }}-{{ checksum "mix.lock" }}-{{ arch }}
2424
- run:
2525
name: Preparing dependencies
2626
command: |
@@ -31,7 +31,7 @@ jobs:
3131
mix dialyzer --plt;
3232
no_output_timeout: 10m
3333
- save_cache:
34-
key: dependencies-cache-{{ checksum ".circleci/config.yml" }}-{{ checksum "mix.lock" }}-{{ arch }}
34+
key: dependencies-cache-{{ checksum ".circleci/config.yml" }}-{{ checksum "script/ci/prepare.sh" }}-{{ checksum "mix.lock" }}-{{ arch }}
3535
paths:
3636
- ~/.mix
3737
- _build

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ add additional support.
2020
```
2121
def deps do
2222
[{:distillery, "~> 2.0", runtime: false},
23-
{:bootleg, "~> 0.7", runtime: false}]
23+
{:bootleg, "~> 0.8", runtime: false}]
2424
end
2525
```
2626

docs/about.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ add additional support.
1414
```
1515
def deps do
1616
[{:distillery, "~> 2.0", runtime: false},
17-
{:bootleg, "~> 0.7", runtime: false}]
17+
{:bootleg, "~> 0.8", runtime: false}]
1818
end
1919
```
2020

lib/bootleg/ssh.ex

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ defmodule Bootleg.SSH do
4242
workspace = Keyword.get(options, :workspace, ".")
4343
create_workspace = Keyword.get(options, :create_workspace, true)
4444
working_directory = Keyword.get(options, :cd)
45-
UI.puts("Creating remote context at '#{workspace}'")
4645

4746
:ssh.start()
4847

mix.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
defmodule Bootleg.Mixfile do
22
use Mix.Project
33

4-
@version "0.7.0"
4+
@version "0.8.0"
55
@source "https://github.com/labzero/bootleg"
66
@homepage "https://labzero.github.io/bootleg/"
77

88
def project do
99
[
1010
app: :bootleg,
1111
version: @version,
12-
elixir: "~> 1.4",
12+
elixir: "~> 1.6",
1313
build_embedded: Mix.env() == :prod,
1414
start_permanent: Mix.env() == :prod,
1515
elixirc_paths: elixirc_paths(Mix.env()),

script/ci/prepare.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
set -e
88

9-
export ERLANG_VERSION="21.0"
10-
export ELIXIR_VERSION="v1.7.2"
9+
export ERLANG_VERSION="20.3"
10+
export ELIXIR_VERSION="v1.6.0"
1111

1212
export ERLANG_PATH="$INSTALL_PATH/otp_src_$ERLANG_VERSION"
1313
export ELIXIR_PATH="$INSTALL_PATH/elixir_$ELIXIR_VERSION"

0 commit comments

Comments
 (0)