Skip to content
This repository has been archived by the owner on May 8, 2020. It is now read-only.

Commit

Permalink
Bump version to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asaaki committed Aug 9, 2015
1 parent 15ca489 commit b417328
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 14 deletions.
25 changes: 14 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ A mix task for [EDIP (elixir docker image packager)](https://github.com/asaaki/e

- [Install](#install)
- [Usage](#usage)
- [Help](#help)
- [Options](#options)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->
Expand All @@ -27,15 +28,26 @@ In mix.exs:
defp deps do
[
{:exrm, "~> 0.18"},
{:edip, "~> 0.2"}
{:edip, "~> 0.3"}
]
end

## Usage
Then run:

mix deps.get edip && mix deps.compile edip

Or install as mix archive:

mix archive.install https://github.com/asaaki/mix-edip/releases/download/v0.3.0/edip-0.3.0.ez

## Usage

mix edip

## Help

mix help edip

## Options

# Override the (repository) name of the docker image.
Expand All @@ -50,15 +62,6 @@ In mix.exs:
mix edip --prefix <PREFIX>
mix edip -p <PREFIX>

# Get the tarball from the packaging (true), without even creating the docker image (only).
# The tarballs can be found in the `.edip/tarballs` directory.
mix edip --tarball true|only
mix edip -a true|only

# Force redownload of EDIP tool
mix edip --force
mix edip -f

# Silence build output of EDIP (will be logged to `.edip.log` instead).
mix edip --silent
mix edip -s
Expand Down
15 changes: 13 additions & 2 deletions lib/mix/tasks/edip.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,26 @@ defmodule Mix.Tasks.Edip do
defp deps do
[
{:exrm, "~> 0.18"},
{:edip, "~> 0.2"}
{:edip, "~> 0.3"}
]
end
## Usage
Then run:
mix deps.get edip && mix deps.compile edip
Or install as mix archive:
mix archive.install https://github.com/asaaki/mix-edip/releases/download/v0.3.0/edip-0.3.0.ez
## Usage
mix edip
## Help
mix help edip
## Options
# Override the (repository) name of the docker image.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Edip.Mixfile do
[
app: :edip,
name: "edip",
version: "0.2.3",
version: "0.3.0",
elixir: "~> 1.0",
description: description,
docs: &docs/0,
Expand Down

0 comments on commit b417328

Please sign in to comment.