-
Notifications
You must be signed in to change notification settings - Fork 130
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
Unclear which version is referred to by stable
: add stable
version number visibly
#817
Comments
I can see the potential for confusion here, but this seems to be a RTD UI issue. The "stable" label depends on RTD's parsing of versioned documentation where they assume we use semantic versioning and assign the "stable" label to the latest release. We could explicitly state somewhere in the docs that "stable" is always the latest release, but I'm not sure where to put that where it would be consistently seen. Maybe in the footer? |
There's already an issue upstream in RTD issue tracker, but it seems stale and the problem unresolved - quite surprisingly really, this does seem like quite a problem to me as a user. SciTools/iris figured out a workaround. Not sure whether this is important enough for us to apply - or maybe we just tag it blocked and wait for upstream to fix it at some point? |
Make it even clearer what software revisions those labels represent. A `git describe` style string¹ for development ("latest") would be even better than just the git revision, but that appears to be non-trivial to implement. Resolves <nextstrain/augur#817>. h/t to @corneliusroemer for the suggestion and @huddlej for bringing it up again in <#15>. ¹ e.g. "${tag}-${n}-g${sha}" where ${tag} is the last/closest tag to the current commit, ${n} is the number of commits since that ${tag}, and ${sha} is the shortened id of the current commit.
Our documentation default seems to be
stable
, at least when I google.However, I can't figure out which version
stable
corresponds to. It'd be good if we added that information somewhere.Then people using Augur could also immediately see if they're not using the latest version.
The text was updated successfully, but these errors were encountered: