From 33b93a74d1d0c4119412918da5526f15d9ce815a Mon Sep 17 00:00:00 2001 From: Kyle A Anderson Date: Thu, 2 May 2019 20:08:49 -0700 Subject: [PATCH] v0.5.0 --- CHANGELOG.md | 2 ++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4723bae..0317ff4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +v0.5.0 +- Enhancement: add ability to configure ip_to_nodename function. https://github.com/kyleaa/libcluster_ec2/pull/17 v0.4.2 - Bug fix: correct public IP address detection with tags strategy https://github.com/kyleaa/libcluster_ec2/pull/16 diff --git a/README.md b/README.md index 7c0f501..1508dfc 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,6 @@ by adding `libcluster_ec2` to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:libcluster_ec2, "~> 0.4"}] + [{:libcluster_ec2, "~> 0.5"}] end ``` diff --git a/mix.exs b/mix.exs index 7c15e63..78d31cd 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule ClusterEC2.Mixfile do def project do [ app: :libcluster_ec2, - version: "0.4.2", + version: "0.5.0", elixir: "~> 1.4", name: "libcluster_ec2", source_url: "https://github.com/kyleaa/libcluster_ec2",