Skip to content

Commit

Permalink
update prometheus.erl and bump to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deadtrickster committed Sep 27, 2016
1 parent 78d8749 commit 2bf7aeb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule PrometheusProcessCollector.Mixfile do

def project do
[app: :prometheus_process_collector,
version: "1.0.0-alpha9",
version: "1.0.0",
description: description,
package: package,
deps: deps]
Expand All @@ -24,11 +24,11 @@ defmodule PrometheusProcessCollector.Mixfile do
links: %{"GitHub" => "https://github.com/deadtrickster/prometheus_process_collector.erl",
"Prometheus.io Client" => "https://github.com/deadtrickster/prometheus.erl",
"Elixir Plugs" => "https://hex.pm/packages/prometheus_plugs"},
files: ["c_src", "src", "include", "priv", "README.md", "LICENSE", "rebar.config"]]
files: ["c_src", "src", "priv", "README.md", "LICENSE", "rebar.config"]]
end

defp deps do
[{:prometheus, "~> 3.0.0-alpha8"}
[{:prometheus, "~> 3.0.0"}
]
end
end
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
%{"prometheus": {:hex, :prometheus, "1.6.0", "bd706b8c164986534706deabeb71ffa1a21c0aee2d4de1aaabebd35f3a13552a", [:rebar3], []}}
%{"prometheus": {:hex, :prometheus, "3.0.0-rc1", "f1563d344740b6c8a2948e2d7b558dd5cfc8619eb8db05956022d6066fb2cef2", [:rebar3], []}}
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{erl_opts, [debug_info]}.
{deps, [{prometheus, "3.0.0-alpha9"}]}.
{deps, [{prometheus, "3.0.0"}]}.

{pre_hooks,
[{"linux", compile, "make -C c_src"}]}.
Expand Down
2 changes: 1 addition & 1 deletion src/prometheus_process_collector.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[{description, "Prometheus.io process collector
Collector exports the current state of process metrics including cpu, memory,
file descriptor usage and native threads count as well as the process start and up times."},
{vsn, "1.0.0-alpha9"},
{vsn, "1.0.0"},
{registered, []},
{applications,
[kernel,
Expand Down

0 comments on commit 2bf7aeb

Please sign in to comment.