elixirsc / git-pair

Automatically adds `Co-authored-by` mark when you're pairing
https://hex.pm/packages/git_pair
MIT License
8 stars 0 forks source link

Use import Config as replacement of Mix.Config #44

Closed wevtimoteo closed 4 years ago

wevtimoteo commented 4 years ago

In Elixir v1.9.0 the Mix.Config was moved from Mix to Elixir's Config module.

A new Config module has been added to Elixir. The previous configuration API, Mix.Config, was part of the Mix build tool. But since releases provide runtime configuration and Mix is not included in releases, we ported the Mix.Config API to Elixir. In other words, use Mix.Config has been soft-deprecated in favor of import Config.

See more at: https://elixirforum.com/t/elixir-v1-9-0-rc-0-released/22921

amadeu01 commented 4 years ago

LGTM