Skip to content

Commit

Permalink
Version 0.8 (#253)
Browse files Browse the repository at this point in the history
* Version 0.8

* Remove misleading output line

* Test with Elixir 1.6

* Invalidate CI dependency cache when environment changes
  • Loading branch information
brienw authored and rjanja committed Oct 1, 2018
1 parent 15a54fa commit f83335d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
paths:
- ~/dependencies
- restore_cache:
key: dependencies-cache-{{ checksum ".circleci/config.yml" }}-{{ checksum "mix.lock" }}-{{ arch }}
key: dependencies-cache-{{ checksum ".circleci/config.yml" }}-{{ checksum "script/ci/prepare.sh" }}-{{ checksum "mix.lock" }}-{{ arch }}
- run:
name: Preparing dependencies
command: |
Expand All @@ -31,7 +31,7 @@ jobs:
mix dialyzer --plt;
no_output_timeout: 10m
- save_cache:
key: dependencies-cache-{{ checksum ".circleci/config.yml" }}-{{ checksum "mix.lock" }}-{{ arch }}
key: dependencies-cache-{{ checksum ".circleci/config.yml" }}-{{ checksum "script/ci/prepare.sh" }}-{{ checksum "mix.lock" }}-{{ arch }}
paths:
- ~/.mix
- _build
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ add additional support.
```
def deps do
[{:distillery, "~> 2.0", runtime: false},
{:bootleg, "~> 0.7", runtime: false}]
{:bootleg, "~> 0.8", runtime: false}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion docs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ add additional support.
```
def deps do
[{:distillery, "~> 2.0", runtime: false},
{:bootleg, "~> 0.7", runtime: false}]
{:bootleg, "~> 0.8", runtime: false}]
end
```

Expand Down
1 change: 0 additions & 1 deletion lib/bootleg/ssh.ex
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ defmodule Bootleg.SSH do
workspace = Keyword.get(options, :workspace, ".")
create_workspace = Keyword.get(options, :create_workspace, true)
working_directory = Keyword.get(options, :cd)
UI.puts("Creating remote context at '#{workspace}'")

:ssh.start()

Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
defmodule Bootleg.Mixfile do
use Mix.Project

@version "0.7.0"
@version "0.8.0"
@source "https://github.com/labzero/bootleg"
@homepage "https://labzero.github.io/bootleg/"

def project do
[
app: :bootleg,
version: @version,
elixir: "~> 1.4",
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
Expand Down
4 changes: 2 additions & 2 deletions script/ci/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

set -e

export ERLANG_VERSION="21.0"
export ELIXIR_VERSION="v1.7.2"
export ERLANG_VERSION="20.3"
export ELIXIR_VERSION="v1.6.0"

export ERLANG_PATH="$INSTALL_PATH/otp_src_$ERLANG_VERSION"
export ELIXIR_PATH="$INSTALL_PATH/elixir_$ELIXIR_VERSION"
Expand Down

0 comments on commit f83335d

Please sign in to comment.