add support for docker version 2.4.0

This commit is contained in:
dana 2020-10-07 10:13:07 +03:00
parent ec26e4c078
commit d19342ebc3
2 changed files with 6 additions and 2 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.4.0] - Upcoming
### Changed
- [#35](https://github.com/javahippie/clj-test-containers/issues/35): Add support form docker version 2.4.0 - upgrading testcontainers-java version
## [0.3.0] - Upcoming
### Added
- [#25](https://github.com/javahippie/clj-test-containers/issues/25): Add support for a container wait stategy

View file

@ -1,4 +1,4 @@
(defproject clj-test-containers "0.3.0-SNAPSHOT"
(defproject clj-test-containers "0.4.0-SNAPSHOT"
: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.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"]}