Skip to content

Commit

Permalink
3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaspazza committed Nov 20, 2024
1 parent bafeef4 commit 3998613
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/validation_delaguardo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
java-version: '22'

- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@12.5
uses: DeLaGuardo/setup-clojure@13.0
with:
cli: 1.12.0.1479 # Clojure CLI based on tools.deps
bb: 1.4.192 # Babashka
clj-kondo: 2024.09.27 # Clj-kondo
bb: 1.12.195 # Babashka
clj-kondo: 2024.11.14 # Clj-kondo
cljfmt: 0.13.0 # cljfmt
zprint: 1.2.9 # zprint
- name: Cache clojure dependencies
Expand Down
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:deps {cheshire/cheshire {:mvn/version "5.13.0"}
djblue/portal {:mvn/version "0.57.3"}
djblue/portal {:mvn/version "0.58.2"}
io.github.clojure/tools.build {:mvn/version "0.10.5"}
metosin/malli {:mvn/version "0.16.1"}
org.clojure/tools.cli {:mvn/version "1.1.230"}}
Expand Down
12 changes: 6 additions & 6 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:aliases
{:antq {:deps {com.github.liquidz/antq {:mvn/version "2.10.1241"}}
{:antq {:deps {com.github.liquidz/antq {:mvn/version "2.11.1250"}}
:main-opts ["-m" "antq.core"]}
:codox
{:exec-args
Expand All @@ -14,7 +14,7 @@
:common-test
{:exec-fn cognitect.test-runner.api/test
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner"
:sha "9d36f36ff541dac680a05010e4348c744333f191"}
:sha "3f288f1f16d167723ad87cc35b1dfee3c1681e10"}
org.clojure/tools.namespace {:mvn/version "1.5.0"}
org.clojure/tools.reader {:mvn/version "1.5.0"}}
:extra-paths ["test/unit/bb" "test/unit/resources" "test/la/bb"]
Expand All @@ -25,15 +25,15 @@
:extra-deps {slipset/deps-deploy {:exclusions [org.slf4j/slf4j-nop]
:mvn/version "0.2.2"}}}
:env-development-repl
{:extra-deps {djblue/portal {:mvn/version "0.57.3"}
{:extra-deps {djblue/portal {:mvn/version "0.58.2"}
org.clojure/core.async {:mvn/version "1.6.681"}}
:extra-paths ["env/development/resources" "env/development/src/clj" "env/development/src/cljc"]
:jvm-opts ["-Dheph-conf=env/development/config.edn,env/common_config.edn"]
:main-opts ["-m" "automaton-build.repl.entry-point"]}
:env-development-test
{:exec-fn cognitect.test-runner.api/test
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner"
:sha "9d36f36ff541dac680a05010e4348c744333f191"}
:sha "3f288f1f16d167723ad87cc35b1dfee3c1681e10"}
org.clojure/tools.namespace {:mvn/version "1.5.0"}
org.clojure/tools.reader {:mvn/version "1.5.0"}}
:extra-paths ["test/dev/bb" "test/dev/clj" "test/dev/resources"]
Expand All @@ -45,10 +45,10 @@
clj-htmltopdf/clj-htmltopdf {:mvn/version "0.2.1"}
codox/codox {:mvn/version "0.10.8"}
dev.weavejester/medley {:mvn/version "1.8.1"}
djblue/portal {:mvn/version "0.57.3"}
djblue/portal {:mvn/version "0.58.2"}
hiccup/hiccup {:mvn/version "2.0.0-RC3"}
io.github.clojure/tools.build {:mvn/version "0.10.5"}
markdown-clj/markdown-clj {:mvn/version "1.12.1"}
markdown-clj/markdown-clj {:mvn/version "1.12.2"}
metosin/malli {:mvn/version "0.16.1"}
zprint/zprint {:mvn/version "1.2.9"}}
:ns-default automaton-build.core
Expand Down
1 change: 0 additions & 1 deletion src/bb/automaton_build/project/dependencies.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

(defn type-schema "Type of dependency registry" [] [:or [:clj-dep :keyword] [:npm :keyword]])

#_{:clj-kondo/ignore [:clojure-lsp/unused-public-var]}
(defn dependency-schema
"Defines required keys for dependency update.
Requires:
Expand Down
6 changes: 3 additions & 3 deletions src/bb/automaton_build/tasks/deploy.clj
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@
:as res}
(-> (or commit-msg "automatic commit")
build-vcs/commit-chain-cmd
(concat [[(build-vcs/tag tag commit-msg)]])
(concat [[(build-vcs/push-cmd branch true)]])
(concat [[(build-vcs/push-tag tag)]])
(concat [[(build-vcs/tag tag commit-msg)]
[(build-vcs/push-cmd branch true)]
[(build-vcs/push-tag tag)]])
(build-commands/force-dirs dir-to-push)
build-commands/chain-cmds
build-commands/first-failing)]
Expand Down
2 changes: 1 addition & 1 deletion version.edn
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{:version "3.2.2"}
{:version "3.2.3"}

0 comments on commit 3998613

Please sign in to comment.