This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-01-26
Channels
- # beginners (55)
- # bristol-clojurians (4)
- # calva (9)
- # clj-kondo (29)
- # cljsrn (1)
- # clojars (6)
- # clojure (57)
- # clojure-dev (4)
- # clojure-uk (22)
- # clojurescript (52)
- # code-reviews (1)
- # core-async (33)
- # cursive (12)
- # datomic (46)
- # docker (7)
- # figwheel-main (13)
- # fulcro (8)
- # graalvm (3)
- # instaparse (1)
- # kaocha (2)
- # perun (1)
- # portkey (5)
- # re-frame (3)
- # shadow-cljs (46)
- # spacemacs (7)
- # specter (3)
- # vim (1)
- # vscode (3)
Dependency question. When using a -SNAPSHOT version, I noticed you can replace the -SNAPSHOT with a date: clojure -Sdeps '{:deps {clj-kondo {:mvn/version "2020.01.14-20200126.145730-7"}}}' -m clj-kondo.main --lint - --config '{:output {:format :edn}}' <<< '(inc)' Are the dated snapshot versions persisted forever on clojars?
Yep! A timestamped snapshot is no different from a regularly versioned release. -SNAPSHOT
is just a pointer to the latest timestamped release. That means you also cannot overwrite a timestamped release - they are immutable as well.
They aren't exposed in the UI - you have to look in the repo (http://repo.clojars.org/clj-kondo/clj-kondo/2020.01.14-SNAPSHOT/) or at the maven-metadata file for the snapshot (http://repo.clojars.org/clj-kondo/clj-kondo/2020.01.14-SNAPSHOT/maven-metadata.xmll)