diff --git a/CHANGELOG.md b/CHANGELOG.md index 778cca0..bb5d9aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/doc/log-strategies.md b/doc/log-strategies.md index c443d64..61b3af9 100644 --- a/doc/log-strategies.md +++ b/doc/log-strategies.md @@ -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))} ``` \ No newline at end of file diff --git a/project.clj b/project.clj index fad849b..a1cd4d1 100644 --- a/project.clj +++ b/project.clj @@ -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"]}}