jacobobryant / biff

A Clojure web framework for solo developers.
https://biffweb.com
MIT License
858 stars 40 forks source link

Old tags break SemVer, throwing dependency checkers #230

Closed credmp closed 1 week ago

credmp commented 1 week ago

Old tags such as 20210630 throw dependency checker (ancient/antq).

$ clojure -Sdeps '{:deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}}' -M -m antq.core
| :file    | :name             | :current | :latest  |
|----------+-------------------+----------+----------|
| deps.edn | com.biffweb/biff  | v1.8.22  | 20210630 |
|          | com.biffweb/tasks | v1.8.22  | 20210630 |

Consider removing these tags to provide these checkers with correct information. The reason why this is important is that you might want to run outdated checks in CI.

jacobobryant commented 1 week ago

Sure--just deleted all the non-semver tags.