From f64a4a0fb4ea4c0f927a33c73281a9ac31a40214 Mon Sep 17 00:00:00 2001 From: badams-scos <34457752+badams-scos@users.noreply.github.com> Date: Thu, 16 May 2019 08:23:26 -0400 Subject: [PATCH] SMRT-1201 Correct source links (#18) co-authored-by: ManApart --- README.md | 2 +- mix.exs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3b28c5c..2d9664a 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ To add to your mix dependencies, add the following block to your mix.exs deps: ```elixir def deps do [ - {:streaming_metrics, "~> 2.1.5"} + {:streaming_metrics, "~> 2.1.6"} ] end ``` diff --git a/mix.exs b/mix.exs index 8ea93de..4054fa1 100644 --- a/mix.exs +++ b/mix.exs @@ -4,13 +4,13 @@ defmodule StreamingMetrics.MixProject do def project do [ app: :streaming_metrics, - version: "2.1.5", + version: "2.1.6", elixir: "~> 1.8", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package(), - source_url: "https://github.com/SmartColumbusOS" + source_url: "https://github.com/smartcitiesdata/streaming-metrics" ] end @@ -39,10 +39,10 @@ defmodule StreamingMetrics.MixProject do defp package do [ - organization: "smartcolumbus_os", + maintainers: ["smartcitiesdata"], licenses: ["AllRightsReserved"], links: %{ - "GitHub" => "https://github.com/SmartColumbusOS/streaming-metrics" + "GitHub" => "https://github.com/smartcitiesdata/streaming-metrics" } ] end