-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump Julia require to 0.7, stop testing on 0.6. #795
Conversation
README.md
Outdated
|
||
Support for Julia `0.4` and `0.5` has been dropped in the latest version, but older versions of Documenter may still work with those Julia versions (the `0.8` and `0.11` branches for either Julia version, respectively). | ||
Support for Julia `0.4`, `0.5` and `0.6` has been dropped in the latest version, but older versions of Documenter may still work with those Julia versions (the `0.8` and `0.11` branches for either Julia version, respectively). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should mentioned 0.19 for 0.6.
Yeah, I think we should drop 0.6 before we do any other substantial changes. But also remove compat stuff, right? Should we apply FemtoCleaner here? |
@@ -76,7 +75,7 @@ meta(m) = Docs.meta(m) | |||
nameof(x::Function) = typeof(x).name.mt.name | |||
nameof(b::Base.Docs.Binding) = b.var | |||
nameof(x::DataType) = x.name.name | |||
nameof(m::Module) = Compat.nameof(m) | |||
nameof(m::Module) = nameof(m) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Won't this stack overflow? As of 0.7 this local nameof
definition should be able to be removed entirely, since it's in Base. (Though we might still need to add a definition like Base.nameof(b::Base.Docs.Binding) = b.var
.)
I think it might be easier to first get this in, then clean up after, since there will be quite a lot of changes for the next Documenter release. Thoughts?
I also removed PackageEval results from README. We can add it back when that actually works.