Upgraded to latest testcontainers-java version (#65)

This commit is contained in:
Tim Zöller 2022-11-16 15:10:17 +01:00
parent 100a938250
commit 94e582a1aa
3 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
## [0.7.4] - 22-11-16
### Changed
- [#65](https://github.com/javahippie/clj-test-containers/issues/65): Upgrade to testcontainers-java 1.17.6
## [0.7.3] - 2202-09-30
### Changed
- [#63](https://github.com/javahippie/clj-test-containers/issues/63): Upgrade to testcontainers-java 1.17.4

View file

@ -30,5 +30,5 @@ Example:
```clojure
{:log-strategy :fn
:function (fn [log-line] (println "From Container: " log-line)}
:function (fn [log-line] (println "From Container: " log-line))}
```

View file

@ -1,4 +1,4 @@
(defproject clj-test-containers "0.7.3"
(defproject clj-test-containers "0.7.4"
:description "A lightweight, unofficial wrapper around the Testcontainers Java library"
:url "https://github.com/javahippie/clj-test-containers"
@ -7,7 +7,7 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.3"]
[org.testcontainers/testcontainers "1.17.4"]]
[org.testcontainers/testcontainers "1.17.6"]]
:aliases {"test" ["run" "-m" "kaocha.runner"]
"cljstyle" ["run" "-m" "cljstyle.main"]}
@ -22,7 +22,7 @@
[org.clojure/test.check "1.1.1"]
[orchestra "2021.01.01-1"]
[org.clojure/tools.namespace "1.3.0"]
[org.testcontainers/postgresql "1.17.4"]
[org.testcontainers/postgresql "1.17.6"]
[com.fzakaria/slf4j-timbre "0.3.21"]
[nrepl "1.0.0"]]
:source-paths ["dev-src"]}}