clojars

victorb 2022-06-15T11:17:31.284869Z

Not super sure with the maven versioning schema, but does this look correct re the badges @tcrawley? https://clojars.org/io.logicblocks/cartus.test Both include_prereleases and the normal badge shows version 0.1.18-RC3 (because that's what the API returns I'm guessing), while I'd expect the "release" badge to show 0.1.17 instead which is the last "proper" release. But again, I could be wrong as I'm not so familiar with the maven versioning schema

2022-06-15T11:25:21.692389Z

The behavior you are seeing is correct, unfortunately. In maven-land, the only prerelease versions are -SNAPSHOT versions. Anything else is considered a release. I think this is because snapshots aren't immutable, and can be overwritten. We could extend the concept of prerelease to extend to RCs, alpha, beta, etc (just for version classification, not for allowing mutability), but it would be difficult to catch all the ways folks define versions.

victorb 2022-06-15T11:31:50.813069Z

Ah, alright. Yeah, sounds tricky if we wound venture out and try to define all the ways people do their own versions. Thanks for the clarification

2022-06-15T11:47:16.187129Z

We're considering adding support for funding links on Clojars. I added a few ideas to https://github.com/clojars/clojars-web/issues/730. Can folks take a look and see what they think?

2022-06-15T11:55:53.687399Z

Are you a gradle user and interested in helping out with Clojars? Take a look at https://github.com/clojars/clojars-web/issues/835