Skip to content

Commit

Permalink
Merge pull request #82 from JackDunnNZ/patch-2
Browse files Browse the repository at this point in the history
Update version check for manifest changes
  • Loading branch information
mmiller-max authored Jan 5, 2022
2 parents 9f83893 + d34b739 commit e170f9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "TestReports"
uuid = "dcd651b4-b50a-5b6b-8f22-87e9f253a252"
version = "0.6.2"
version = "0.6.3"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
4 changes: 2 additions & 2 deletions src/compat_check.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ end
Manifest structure changes with Julia version so we handle that here.
"""
function getdeps(manifest)
@static if VERSION >= v"1.6.0"
@static if VERSION >= v"1.6.2"
# Manifest is a struct
return manifest.deps
elseif VERSION >= v"1.1.0"
Expand Down Expand Up @@ -240,4 +240,4 @@ function manifest_err_str(pkg, pkg_ver, loc, tr_ver)
return """$pkg has version $pkg_ver of TestReports in its $loc manifest
which is not compatible with the version being used by TestReports ($tr_ver)
Update the compat entry of $pkg."""
end
end

2 comments on commit e170f9d

@mmiller-max
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/51690

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.6.3 -m "<description of version>" e170f9deecf2dcecc70a60daad63d89307f747e5
git push origin v0.6.3

Please sign in to comment.