From cfaaac36e827a64568fc417d1cd264151aa10418 Mon Sep 17 00:00:00 2001 From: Fengyang Wang Date: Wed, 1 Nov 2017 00:19:25 -0400 Subject: [PATCH] Revisions for standard library (#221) * Revisions for standard library * Bump REQUIRE appropriately --- REQUIRE | 2 +- src/Parser.jl | 1 + test/lowering.jl | 2 +- test/runtests.jl | 2 +- test/serializer.jl | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/REQUIRE b/REQUIRE index 5c0d3d8..e0ee8c3 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,2 +1,2 @@ julia 0.6 -Compat 0.30.0 +Compat 0.33.0 diff --git a/src/Parser.jl b/src/Parser.jl index 3f93c65..b4477fd 100644 --- a/src/Parser.jl +++ b/src/Parser.jl @@ -1,6 +1,7 @@ module Parser # JSON using Compat +using Compat.Mmap using ..Common """ diff --git a/test/lowering.jl b/test/lowering.jl index 96d2ce6..3eaad5f 100644 --- a/test/lowering.jl +++ b/test/lowering.jl @@ -1,7 +1,7 @@ module TestLowering using JSON -using Base.Test +using Compat.Test using FixedPointNumbers: Fixed if isdefined(Base, :Dates) diff --git a/test/runtests.jl b/test/runtests.jl index a879df7..15d6b75 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,5 +1,5 @@ using JSON -using Base.Test +using Compat.Test using Compat using OffsetArrays diff --git a/test/serializer.jl b/test/serializer.jl index 9c05fb0..69da5e6 100644 --- a/test/serializer.jl +++ b/test/serializer.jl @@ -1,7 +1,7 @@ module TestSerializer using JSON -using Base.Test +using Compat.Test # to define a new serialization behaviour, import these first import JSON.Serializations: CommonSerialization, StandardSerialization