Skip to content

Commit 2792f97

Browse files
committed
Tighten telemetry requirement
Turns out telemetry 0.4.0 doesn't include the `span` function
1 parent dd639bf commit 2792f97

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CONTRIBUTING.md

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ Unfortunately however my own (Ben Wilson) efforts at this keep hitting dead ends
8383

8484
For now, it's been simply easier to build helper modules by hand. Who knows, maybe you're up for building ExAws v3.0?
8585

86+
## Formatting and code style
87+
88+
Before opening a PR, please run `mix format` over your changes with a recent Elixir version, and also `mix dialyzer` to make sure you haven't introduced any typing errors.
89+
8690
## Running Tests
8791
Running the test suite for ex_aws requires a few things:
8892

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ defmodule ExAws.Mixfile do
3131

3232
defp deps() do
3333
[
34-
{:telemetry, "~> 0.4"},
34+
{:telemetry, "~> 0.4.3"},
3535
{:bypass, "~> 2.1", only: :test},
3636
{:configparser_ex, "~> 4.0", optional: true},
3737
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},

0 commit comments

Comments
 (0)