Upgraded to latest testcontainers-java version (#65)
This commit is contained in:
parent
100a938250
commit
94e582a1aa
3 changed files with 8 additions and 4 deletions
|
|
@ -1,6 +1,10 @@
|
||||||
# Change Log
|
# 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/).
|
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
|
## [0.7.3] - 2202-09-30
|
||||||
### Changed
|
### Changed
|
||||||
- [#63](https://github.com/javahippie/clj-test-containers/issues/63): Upgrade to testcontainers-java 1.17.4
|
- [#63](https://github.com/javahippie/clj-test-containers/issues/63): Upgrade to testcontainers-java 1.17.4
|
||||||
|
|
|
||||||
|
|
@ -30,5 +30,5 @@ Example:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
{:log-strategy :fn
|
{:log-strategy :fn
|
||||||
:function (fn [log-line] (println "From Container: " log-line)}
|
:function (fn [log-line] (println "From Container: " log-line))}
|
||||||
```
|
```
|
||||||
|
|
@ -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"
|
:description "A lightweight, unofficial wrapper around the Testcontainers Java library"
|
||||||
|
|
||||||
:url "https://github.com/javahippie/clj-test-containers"
|
:url "https://github.com/javahippie/clj-test-containers"
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
||||||
|
|
||||||
:dependencies [[org.clojure/clojure "1.10.3"]
|
: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"]
|
:aliases {"test" ["run" "-m" "kaocha.runner"]
|
||||||
"cljstyle" ["run" "-m" "cljstyle.main"]}
|
"cljstyle" ["run" "-m" "cljstyle.main"]}
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
[org.clojure/test.check "1.1.1"]
|
[org.clojure/test.check "1.1.1"]
|
||||||
[orchestra "2021.01.01-1"]
|
[orchestra "2021.01.01-1"]
|
||||||
[org.clojure/tools.namespace "1.3.0"]
|
[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"]
|
[com.fzakaria/slf4j-timbre "0.3.21"]
|
||||||
[nrepl "1.0.0"]]
|
[nrepl "1.0.0"]]
|
||||||
:source-paths ["dev-src"]}}
|
:source-paths ["dev-src"]}}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue