Skip to content

Commit 1d51820

Browse files
committed
chore: prepare for v0.7 release
1 parent d5ad40a commit 1d51820

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The package can be installed as:
2424
```elixir
2525
def deps do
2626
[
27-
{:grpc, "~> 0.6"},
27+
{:grpc, "~> 0.7"},
2828
# We don't force protobuf as a dependency for more
2929
# flexibility on which protobuf library is used,
3030
# but you probably want to use it as well

livebooks/telemetry.livemd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ my_app_root = Path.join(__DIR__, "..")
66
Mix.install(
77
[
88
{:grpc, path: my_app_root, env: :dev},
9-
{:telemetry_metrics, "~> 0.6"},
9+
{:telemetry_metrics, "~> 0.7"},
1010
{:telemetry_metrics_prometheus, "~> 1.1"},
1111
{:req, "~> 0.3"}
1212
],
@@ -156,8 +156,8 @@ defmodule MetricsSupervisor do
156156

157157
# This can also be achieved through some clever use of tags+tag_values,
158158
# without having to attach and publish a new event. However, that would
159-
# end up leaking an extraneous tag to Prometheus.
160-
# This is cleaner in that sense.
159+
# end up leaking an extraneous tag to Prometheus.
160+
# This is cleaner in that sense.
161161
:telemetry.attach_many(
162162
"handler-#{__MODULE__}-start",
163163
[

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule GRPC.Mixfile do
22
use Mix.Project
33

4-
@version "0.6.0"
4+
@version "0.7.0"
55

66
def project do
77
[

0 commit comments

Comments
 (0)