Fork me on GitHub
#tools-deps
<
2022-06-19
>
seancorfield05:06:31

So this Q doesn't get lost in the higher-traffic channel there. I can confirm that install-latest gives me v0.4.9 too while https://github.com/seancorfield/deps-new/releases shows three releases since then.

thheller06:06:02

I'm guessing version numbers are maybe not compared numerically? if they are sorted that way at all I don't know

(sort ["0.4.1" "0.4.9" "0.4.12"])
=> ("0.4.1" "0.4.12" "0.4.9")

Cora (she/her)06:06:38

that's lexically sorted

borkdude09:06:15

There's also: https://github.com/xsc/version-clj

user=> (v/version-sort ["0.4.1" "0.4.9" "0.4.12"])
("0.4.1" "0.4.9" "0.4.12")