From 48a511dcf1ebbb0126fa4f7996338f77ed3ed9ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Caro?= Date: Sat, 3 Oct 2015 12:49:47 +0200 Subject: [PATCH] Version bump --- README.md | 6 +++--- mix.exs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2681693..5241435 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The only purpose of these helpers is to avoid repetitive patterns seen when work ## Use -Just add `{:sshex, "1.2.0"}` to your deps on `mix.exs`. +Just add `{:sshex, "1.3.0"}` to your deps on `mix.exs`. Then assuming `:ssh` application is already started (hence it is listed on deps), you should acquire an SSH connection using `:ssh.connect/4` like this: @@ -79,9 +79,9 @@ To use alternative keys you should save them somewhere on disk and then set the ## Changelog -### master +### 1.3 -* Support streaming +* Support streaming via `stream/3` * Stop using global mocks (i.e. `:meck`) ### 1.2 diff --git a/mix.exs b/mix.exs index 49b1ff1..2c2fd6c 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule SSHEx.Mixfile do def project do [app: :sshex, - version: "1.2.0", + version: "1.3.0", elixir: "~> 1.0.0", package: package, deps: deps,