Skip to content

Commit 4459ded

Browse files
committed
Fix deprecation warnings
1 parent 4de2a0e commit 4459ded

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

config/config.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is responsible for configuring your application
22
# and its dependencies with the aid of the Mix.Config module.
3-
use Mix.Config
3+
import Config
44

55
# This configuration is loaded before any dependency and is restricted
66
# to this project. If another project depends on this project, this

config/dev.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
use Mix.Config
1+
import Config

config/test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use Mix.Config
1+
import Config
22

33
defmodule CustomFormatValidator do
44
def validate(_format, _data), do: true

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ defmodule ExJsonSchema.Mixfile do
3838
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
3939
{:excoveralls, "~> 0.14", only: :test},
4040
{:httpoison, "~> 1.8", only: :test},
41-
{:mix_test_watch, "~> 0.7", only: [:dev, :test]},
41+
{:mix_test_watch, "~> 1.2", only: [:dev, :test]},
4242
{:jason, "~> 1.4", only: :test},
4343
{:plug_cowboy, "~> 2.5", only: :test},
4444
{:phoenix, "~> 1.6", only: :test}

0 commit comments

Comments
 (0)