Skip to content

Commit

Permalink
bump: clojure deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeldelboni committed Jul 3, 2024
1 parent 5ecbe17 commit 281a2fe
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install clojure cli
uses: DeLaGuardo/setup-clojure@master
with:
cli: 1.11.2.1446
cli: 1.11.3.1463

- name: Cache Maven packages
uses: actions/cache@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install clojure cli
uses: DeLaGuardo/setup-clojure@master
with:
cli: 1.11.2.1446
cli: 1.11.3.1463

- name: Cache Maven packages
uses: actions/cache@v4
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Install clojure cli
uses: DeLaGuardo/setup-clojure@master
with:
cli: 1.11.2.1446
cli: 1.11.3.1463

- name: Setup clojure-lsp
uses: clojure-lsp/setup-clojure-lsp@v1.0.2
Expand Down
18 changes: 9 additions & 9 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.2"}
org.clojure/tools.deps {:mvn/version "0.19.1417"}
clj-kondo/clj-kondo {:mvn/version "2024.03.13"}
datalevin/datalevin {:mvn/version "0.9.3"}
:deps {org.clojure/clojure {:mvn/version "1.11.3"}
org.clojure/tools.deps {:mvn/version "0.19.1432"}
clj-kondo/clj-kondo {:mvn/version "2024.05.24"}
datalevin/datalevin {:mvn/version "0.9.8"}
com.cognitect/transit-clj {:mvn/version "1.0.333"}
org.slf4j/slf4j-nop {:mvn/version "2.0.12"}}
org.slf4j/slf4j-nop {:mvn/version "2.0.13"}}

:aliases
{:extract {:ns-default codes.clj.docs.extractor.core
Expand All @@ -13,21 +13,21 @@
:jvm-opts ["--add-opens=java.base/java.nio=ALL-UNNAMED"
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"]}

:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.0"}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.4"}}
:ns-default build
:exec-args {:uber-file "target/extractor.jar"}}

:dev {:extra-paths ["dev" "test" "test-resources"]
:extra-deps {clj-http/clj-http {:mvn/version "3.12.3"}
lambdaisland/kaocha {:mvn/version "1.87.1366"}
:extra-deps {clj-http/clj-http {:mvn/version "3.13.0"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}
nubank/mockfn {:mvn/version "0.7.0"}
nubank/matcher-combinators {:mvn/version "3.9.1"}}
; needed for datalevin on jvm > 11
:jvm-opts ["--add-opens=java.base/java.nio=ALL-UNNAMED"
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"]}

:nrepl {:extra-deps {cider/cider-nrepl {:mvn/version "0.47.0"}}
:nrepl {:extra-deps {cider/cider-nrepl {:mvn/version "0.49.1"}}
:main-opts ["-m" "nrepl.cmdline" "--middleware" "[cider.nrepl/cider-middleware]"]}

:test {:main-opts ["-m" "kaocha.runner"]
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.11.2</version>
<version>1.11.3</version>
</dependency>
</dependencies>
<build>
Expand Down

0 comments on commit 281a2fe

Please sign in to comment.