cljdoc

https://cljdoc.org/ & https://github.com/cljdoc/cljdoc
2019-01-23T02:34:42.049900Z

Howdy there! I just tried building documentation for [metasoarous/oz "1.5.0"] but forgot to push my repo to GitHub before running the cljdoc build, and so the README was not imported. Is there a way to get this to rebuild?

2019-01-23T02:35:50.050700Z

Also, witnessing this rather bizarre issue where cljdoc thinks that 1.4.0 is the newer version of the library; Any idea why this might be happening?

2019-01-23T02:39:47.051200Z

I guess I found an answer to the first issue here: https://github.com/cljdoc/cljdoc/blob/master/doc/userguide/faq.md#how-to-update-documentation

martinklepsch 2019-01-23T09:49:13.052500Z

Hey @metasoarous 👋 There is a small hidden rebuild button in the top right (left of the GitHub/SCM link) that would have helped in this situation.

1❤️
martinklepsch 2019-01-23T09:50:43.053900Z

The reason 1.4.0 is shown as newer in this case is that versions without any non-API metadata (i.e. SCM stuff) aren't taken into account when determining the list of available versions. This could be considered a bug and if you want to open a ticket for it that would be welcome 👍

martinklepsch 2019-01-23T09:52:15.055100Z

Docs for 1.5.0 are now available: https://cljdoc.org/d/metasoarous/oz/1.5.0 and if you want to add a badge to your README you can use this markdown bit:

[![cljdoc badge](<https://cljdoc.org/badge/metasoarous/oz>)](<https://cljdoc.org/d/metasoarous/oz>)

1👍
2019-01-23T17:59:34.055600Z

LOL; Love it. Thank you!