Skip to content

Commit 1297054

Browse files
committed
Updated dependency versions
1 parent 233c388 commit 1297054

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

deps.edn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{:paths ["src" "resources"]
22

33
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
4-
org.testcontainers/testcontainers {:mvn/version "1.17.6"}}
4+
org.testcontainers/testcontainers {:mvn/version "1.19.7"}}
55

66
:aliases {:dev {:extra-paths "dev-src"}
77
:test {:extra-paths ["test" "test/resources"]
88
:extra-deps {expound/expound {:mvn/version "0.9.0"}
9-
lambdaisland/kaocha {:mvn/version "1.71.1119"}
9+
lambdaisland/kaocha {:mvn/version "1.88.1376"}
1010
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}
1111
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
1212
org.clojure/test.check {:mvn/version "1.1.1"}
13-
org.testcontainers/postgresql {:mvn/version "1.17.6"}}}
13+
org.testcontainers/postgresql {:mvn/version "1.19.7"}}}
1414

1515
:test-runner {:extra-paths ["test" "test/resources"]
1616
:extra-deps {expound/expound {:mvn/version "0.9.0"}
17-
lambdaisland/kaocha {:mvn/version "1.71.1119"}
17+
lambdaisland/kaocha {:mvn/version "1.88.1376"}
1818
lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"}
1919
lambdaisland/kaocha-junit-xml {:mvn/version "1.17.101"}
2020
org.clojure/test.check {:mvn/version "1.1.1"}
2121
orchestra {:mvn/version "2021.01.01-1"}
22-
org.testcontainers/postgresql {:mvn/version "1.17.6"}}
22+
org.testcontainers/postgresql {:mvn/version "1.19.7"}}
2323
:main-opts ["-m" "kaocha.runner" "--reporter" "kaocha.report/documentation"]}
2424

25-
:cljstyle {:extra-deps {mvxcvi/cljstyle {:mvn/version "0.15.0"
25+
:cljstyle {:extra-deps {mvxcvi/cljstyle {:mvn/version "0.16.630"
2626
:exclusions [org.clojure/clojure]}}
2727
:main-opts ["-m" "cljstyle.main" "check"]}}}

project.clj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject clj-test-containers "unspecified"
1+
(defproject testcontainers-clj "unspecified"
22
:description "A lightweight, official wrapper around the Testcontainers Java library"
33

44
:url "https://github.com/testcontainers/testcontainers-clj"
@@ -7,23 +7,23 @@
77
:url "http://www.eclipse.org/legal/epl-v10.html"}
88

99
:dependencies [[org.clojure/clojure "1.10.3"]
10-
[org.testcontainers/testcontainers "1.19.0"]]
10+
[org.testcontainers/testcontainers "1.19.7"]]
1111

1212
:aliases {"test" ["run" "-m" "kaocha.runner"]
1313
"cljstyle" ["run" "-m" "cljstyle.main"]}
1414

1515
:plugins [[jainsahab/lein-githooks "1.0.0"]]
1616

1717
:profiles {:dev {:dependencies [[expound "0.9.0"]
18-
[lambdaisland/kaocha "1.85.1342"]
18+
[lambdaisland/kaocha "1.88.1376"]
1919
[lambdaisland/kaocha-cloverage "1.1.89"]
2020
[lambdaisland/kaocha-junit-xml "1.17.101"]
21-
[mvxcvi/cljstyle "0.15.0" :exclusions [org.clojure/clojure]]
21+
[mvxcvi/cljstyle "0.16.630" :exclusions [org.clojure/clojure]]
2222
[org.clojure/test.check "1.1.1"]
2323
[orchestra "2021.01.01-1"]
24-
[org.clojure/tools.namespace "1.3.0"]
25-
[org.testcontainers/postgresql "1.19.0"]
26-
[com.fzakaria/slf4j-timbre "0.3.21"]
24+
[org.clojure/tools.namespace "1.5.0"]
25+
[org.testcontainers/postgresql "1.19.7"]
26+
[com.fzakaria/slf4j-timbre "0.4.1"]
2727
[nrepl "1.0.0"]]
2828
:source-paths ["dev-src"]}
2929
:release {:deploy-repositories [["maven" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2"

0 commit comments

Comments
 (0)