Pushing snapshot with same version many times to Clojars

417 Views Asked by At

I've been pushing a library (with same version) several times to clojars. Previously, every time I builded the project, leiningen fetched the latest snapshot:

[my-library "0.1.0-SNAPSHOT"]

But now I have to write its version explicitly in the project.clj dependencies, in order to get the latest snapshot, like this:

[my-library "0.1.0-20150415.183412-9"]

I guess I just could change the library version to "0.2.0-SNAPSHOT". But, if anyone could just explain me why I can't get the latest snapshot like before.

Thanks

0

There are 0 best solutions below