inaka / Dayron

A repository `similar` to Ecto.Repo that maps to an underlying http client, sending requests to an external rest api instead of a database
http://inaka.net/blog/2016/05/24/introducing-dayron/
Apache License 2.0
158 stars 20 forks source link

Documentation code links do not work #52

Open eloyesp opened 7 years ago

eloyesp commented 7 years ago

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.

aliou commented 7 years ago

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.