Skip to content

Commit

Permalink
chore: prepare for v0.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
polvalente committed Sep 5, 2023
1 parent d5ad40a commit 1d51820
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions livebooks/telemetry.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
],
Expand Down Expand Up @@ -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",
[
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule GRPC.Mixfile do
use Mix.Project

@version "0.6.0"
@version "0.7.0"

def project do
[
Expand Down

0 comments on commit 1d51820

Please sign in to comment.