Skip to content

Commit

Permalink
Test on Elixir 1.11 and bump required version to 1.7 (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
arkgil committed Oct 7, 2020
1 parent 3b23aa0 commit 18b859f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
28 changes: 14 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,22 @@ workflows:
build_and_test:
jobs:
- telemetry_metrics/build_and_test:
name: "1.10-otp-22"
elixir: "1.10.0"
otp: "22"
codecov_flag: "1_10_otp22"
name: "1.11-otp-23"
elixir: "1.11.0"
otp: "23"
codecov_flag: "1_11_otp23"
- telemetry_metrics/build_and_test:
name: "1.10-otp-21"
elixir: "1.10.0"
name: "1.11-otp-21"
elixir: "1.11.0"
otp: "21"
codecov_flag: "1_10_otp21"
codecov_flag: "1_11_otp21"
- telemetry_metrics/build_and_test:
name: "1.6-otp-21"
elixir: "1.6.6"
otp: "21"
codecov_flag: "1_6_otp21"
name: "1.7-otp-22"
elixir: "1.7.4"
otp: "22"
codecov_flag: "1_7_otp22"
- telemetry_metrics/build_and_test:
name: "1.6-otp-19"
elixir: "1.6.6"
name: "1.7-otp-19"
elixir: "1.7.4"
otp: "19"
codecov_flag: "1_6_otp19"
codecov_flag: "1_7_otp19"
2 changes: 1 addition & 1 deletion lib/telemetry_metrics/console_reporter.ex
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ defmodule Telemetry.Metrics.ConsoleReporter do
e ->
Logger.error([
"Could not format metric #{inspect(metric)}\n",
Exception.format(:error, e, System.stacktrace())
Exception.format(:error, e, __STACKTRACE__)
])

"""
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule Telemetry.Metrics.MixProject do
name: "Telemetry.Metrics",
app: :telemetry_metrics,
version: @version,
elixir: "~> 1.6",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
preferred_cli_env: preferred_cli_env(),
deps: deps(),
Expand Down

0 comments on commit 18b859f

Please sign in to comment.