chore(deps): update dependency credo to ~> 1.6 #3

Merged
jimsy merged 2 commits from renovate/credo-1.x into main 2021-12-09 13:29:17 +13:00
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ defimpl MidiProto.Message, for: MidiProto.Firmata.CapabilityResponse do
def encode(%{capabilities: capabilities}) do
payload =
capabilities
|> Enum.map(fn
|> Stream.map(fn
:unsupported -> <<>>
:digital_input -> <<0x00, 0x01>>
:digital_output -> <<0x01, 0x01>>

View file

@ -39,7 +39,7 @@ defmodule MidiProto.MixProject do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.1", only: [:dev, :test], runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:earmark, ">= 0.0.0", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev, :test]},
{:git_ops, "~> 2.3", only: ~w[dev test]a, runtime: false}