From 5025f256134e5112dd427aab46f811c61c6647d6 Mon Sep 17 00:00:00 2001 From: Vanshdeep Singh Date: Tue, 10 Sep 2024 19:44:18 -0400 Subject: [PATCH] Bump version --- lib/control_node/host/ssh.ex | 1 + mix.exs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/control_node/host/ssh.ex b/lib/control_node/host/ssh.ex index 6b07fe7..a1fc5f7 100644 --- a/lib/control_node/host/ssh.ex +++ b/lib/control_node/host/ssh.ex @@ -25,6 +25,7 @@ defmodule ControlNode.Host.SSH do * `:user` : SSH user name * `:private_key_dir` : Path to the `.ssh` folder (eg. `/home/user/.ssh`) * `via_ssh_agent`: Use SSH Agent for authentication (default `false`) + * `env_vars`: Define env vars (key, value) to be passed when running a command on the remote host """ @type t :: %__MODULE__{ host: binary, diff --git a/mix.exs b/mix.exs index ea702cd..e73a7ee 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule ControlNode.MixProject do [ name: "Control Node", app: :control_node, - version: "0.6.0", + version: "0.7.0", elixir: "~> 1.14", start_permanent: Mix.env() == :prod, elixirc_paths: elixirc_paths(Mix.env()),