From 1d51820278dbbc9f9a10c39383fa413cf3cc8031 Mon Sep 17 00:00:00 2001 From: Paulo Valente <16843419+polvalente@users.noreply.github.com> Date: Tue, 5 Sep 2023 04:23:02 -0300 Subject: [PATCH] chore: prepare for v0.7 release --- README.md | 2 +- livebooks/telemetry.livemd | 6 +++--- mix.exs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 88c8a260..ab9d18da 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The package can be installed as: ```elixir def deps do [ - {:grpc, "~> 0.6"}, + {:grpc, "~> 0.7"}, # We don't force protobuf as a dependency for more # flexibility on which protobuf library is used, # but you probably want to use it as well diff --git a/livebooks/telemetry.livemd b/livebooks/telemetry.livemd index c57c46b6..eedc982a 100644 --- a/livebooks/telemetry.livemd +++ b/livebooks/telemetry.livemd @@ -6,7 +6,7 @@ my_app_root = Path.join(__DIR__, "..") Mix.install( [ {:grpc, path: my_app_root, env: :dev}, - {:telemetry_metrics, "~> 0.6"}, + {:telemetry_metrics, "~> 0.7"}, {:telemetry_metrics_prometheus, "~> 1.1"}, {:req, "~> 0.3"} ], @@ -156,8 +156,8 @@ defmodule MetricsSupervisor do # This can also be achieved through some clever use of tags+tag_values, # without having to attach and publish a new event. However, that would - # end up leaking an extraneous tag to Prometheus. - # This is cleaner in that sense. + # end up leaking an extraneous tag to Prometheus. + # This is cleaner in that sense. :telemetry.attach_many( "handler-#{__MODULE__}-start", [ diff --git a/mix.exs b/mix.exs index a88f8cb6..eddc1931 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule GRPC.Mixfile do use Mix.Project - @version "0.6.0" + @version "0.7.0" def project do [