rust-cli/confy

serde-link fixed on master but wrong on docs.rs/confy

Closed this issue ยท 2 comments

Hi,

https://docs.rs/confy/0.3.1/src/confy/lib.rs.html#27 points to the non-existing https://docs.rs/crates/serde, but should link to the correct page (https://docs.rs/serde) since commit 40d9dfdf266fda310a52bf6c57798f0d71ae742e. I'm not sure what's wrong here, deployment wrong or something. I would have opened a PR but I am not sure there's anything to fix in the docs themselves.

Best,
Lexi

Hi Lexi!

What you are seeing there is the documentation of the specific version 0.3.1, if you go here: https://docs.rs/confy/latest/src/confy/lib.rs.html#27 you'll see the latest that points to the current version which does not 404 in the rendered docs.

That commit was included in the update to 0.5.0 so you must be on at least that version in the docs to see the change.

$ git tag --contains 40d9dfd
0.5.0
0.5.1
v0.6.0
v0.6.1

oh cool, I completely overlooked that there was a specific version included in the link I visited ๐Ÿ˜… sorry for the noise then!