diff --git a/CHANGELOG.md b/CHANGELOG.md index e5c42ad..ef285d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. This change ## [0.3.0] - Upcoming ### Added - [#25](https://github.com/javahippie/clj-test-containers/issues/25): Add support for a container wait stategy +- [#35](https://github.com/javahippie/clj-test-containers/issues/35): Add support for docker version 2.4.0 - upgrading testcontainers-java version ### Changed - [#29](https://github.com/javahippie/clj-test-containers/issues/29): init-network should be called create-network! diff --git a/project.clj b/project.clj index 48df0e8..9ab28d5 100644 --- a/project.clj +++ b/project.clj @@ -7,7 +7,7 @@ :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.10.1"] - [org.testcontainers/testcontainers "1.14.3"]] + [org.testcontainers/testcontainers "1.15.0-rc2"]] :aliases {"test" ["run" "-m" "kaocha.runner"] "cljstyle" ["run" "-m" "cljstyle.main"]} @@ -22,7 +22,7 @@ [mvxcvi/cljstyle "0.13.0" :exclusions [org.clojure/clojure]] [org.clojure/test.check "1.1.0"] [org.clojure/tools.namespace "1.0.0"] - [org.testcontainers/postgresql "1.14.3"]] + [org.testcontainers/postgresql "1.15.0-rc2"]] ; :githooks {:auto-install true ; :ci-env-variable "CI" ; :pre-commit ["script/pre-commit"]