Skip to content

Commit 1edac59

Browse files
authored
Create deprecations.jl (#93)
1 parent 1474534 commit 1edac59

File tree

5 files changed

+908
-0
lines changed

5 files changed

+908
-0
lines changed

.codecov.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ignore:
2+
- "src/deprecations.jl"

Project.toml

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ uuid = "5fcdbb90-de43-509e-b9a6-c4d43f29cf26"
33
version = "3.2.1"
44

55
[deps]
6+
ExprTools = "e2ba6199-217a-4e67-a87a-7c52f15ade04"
7+
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
68

79
[compat]
810
julia = "1.2"
11+
ExprTools = "0.1"
12+
MacroTools = "0.5"

docs/make.jl

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ println("Documentation Build")
55
makedocs(
66
modules = [DynamicSumTypes],
77
sitename = "DynamicSumTypes.jl",
8+
warnonly = [:doctest, :missing_docs, :cross_references],
89
pages = [
910
"API" => "index.md",
1011
],

src/DynamicSumTypes.jl

+2
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,6 @@ returns false.
136136
"""
137137
is_sumtype(T::Type) = false
138138

139+
include("deprecations.jl")
140+
139141
end

0 commit comments

Comments
 (0)