From 6807e53c6d0c7f7d3b5fb92dab1d34a019c70934 Mon Sep 17 00:00:00 2001 From: James Porter Date: Wed, 5 Jul 2017 22:35:26 -0400 Subject: [PATCH 1/2] remove compat --- REQUIRE | 1 - src/htmltypes.jl | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/REQUIRE b/REQUIRE index 54bc3f1..8e213a3 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,4 +1,3 @@ julia 0.5 -Compat 0.23.0 BinDeps AbstractTrees 0.1.0 \ No newline at end of file diff --git a/src/htmltypes.jl b/src/htmltypes.jl index 3f3444b..bb4a4cd 100644 --- a/src/htmltypes.jl +++ b/src/htmltypes.jl @@ -1,8 +1,5 @@ -using Compat +abstract type HTMLNode end -@compat abstract type HTMLNode end - -# TODO immutable? struct HTMLText <: HTMLNode parent::HTMLNode text::AbstractString From 788a857094f8c108c6fefbeb99b64a8e26595ee8 Mon Sep 17 00:00:00 2001 From: James Porter Date: Wed, 5 Jul 2017 22:36:18 -0400 Subject: [PATCH 2/2] require julia 0.6 --- REQUIRE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/REQUIRE b/REQUIRE index 8e213a3..f95100a 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,3 +1,3 @@ -julia 0.5 +julia 0.6 BinDeps AbstractTrees 0.1.0 \ No newline at end of file