Dayron
Dayron copied to clipboard
Documentation code links do not work
It seems that hexdoc.pm links the documentation with the source code in github, but those links are not working because of missing version tags.
-
v0.1.0
has no tag. -
v0.1.1
tag is name does not follow the expectaction (it's missing the initialv
).
Hi!
For the v0.1.0
, it seems like you can use the commit 6f42c87c93b53bd602b1ec38b0c27dbc5d95c54e
, as it is the one that sets the correct date for this release in the CHANGELOG.md
file.
So to set it, you can run
git tag v0.1.0 6f42c87c93b53bd602b1ec38b0c27dbc5d95c54e
For the v0.1.1
, you can use 0.1.1
as a revision:
git tag v0.1.1 0.1.1
Finally, you’ll need to push the new tags to GitHub:
git push --tags origin master
Sidenote: I wanted to do a PR for this, but since creating a tag requires pushing directly to the repo I can’t.