Skip to content

Commit e170f9d

Browse files
authored
Merge pull request #82 from JackDunnNZ/patch-2
Update version check for manifest changes
2 parents 9f83893 + d34b739 commit e170f9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "TestReports"
22
uuid = "dcd651b4-b50a-5b6b-8f22-87e9f253a252"
3-
version = "0.6.2"
3+
version = "0.6.3"
44

55
[deps]
66
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"

src/compat_check.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ end
7373
Manifest structure changes with Julia version so we handle that here.
7474
"""
7575
function getdeps(manifest)
76-
@static if VERSION >= v"1.6.0"
76+
@static if VERSION >= v"1.6.2"
7777
# Manifest is a struct
7878
return manifest.deps
7979
elseif VERSION >= v"1.1.0"
@@ -240,4 +240,4 @@ function manifest_err_str(pkg, pkg_ver, loc, tr_ver)
240240
return """$pkg has version $pkg_ver of TestReports in its $loc manifest
241241
which is not compatible with the version being used by TestReports ($tr_ver)
242242
Update the compat entry of $pkg."""
243-
end
243+
end

0 commit comments

Comments
 (0)