Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 5d3f1a3

Browse files
committed
Release 1.0.2
- Support v1.41 docker API - Update dependencies - Fix docs - Adapt tests for older Actions docker version
1 parent 5778f1b commit 5d3f1a3

File tree

7 files changed

+13110
-666
lines changed

7 files changed

+13110
-666
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,25 @@ See [this](https://cljdoc.org/d/lispyclouds/clj-docker-client/0.3.2/doc/readme)
1919
### Installation
2020
Leiningen/Boot
2121
```clojure
22-
[lispyclouds/clj-docker-client "1.0.1"]
22+
[lispyclouds/clj-docker-client "1.0.2"]
2323
```
2424

2525
Clojure CLI/deps.edn
2626
```clojure
27-
{lispyclouds/clj-docker-client {:mvn/version "1.0.1"}}
27+
{lispyclouds/clj-docker-client {:mvn/version "1.0.2"}}
2828
```
2929

3030
Gradle
3131
```groovy
32-
compile 'lispyclouds:clj-docker-client:1.0.1'
32+
compile 'lispyclouds:clj-docker-client:1.0.2'
3333
```
3434

3535
Maven
3636
```xml
3737
<dependency>
3838
<groupId>lispyclouds</groupId>
3939
<artifactId>clj-docker-client</artifactId>
40-
<version>1.0.1</version>
40+
<version>1.0.2</version>
4141
</dependency>
4242
```
4343

project.clj

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,29 @@
1313
; You should have received a copy of the GNU Lesser General Public License
1414
; along with clj-docker-client. If not, see <http://www.gnu.org/licenses/>.
1515

16-
(defproject lispyclouds/clj-docker-client "1.0.1"
16+
(defproject lispyclouds/clj-docker-client "1.0.2"
1717
:author "Rahul De <rahul@mailbox.org>"
18-
:url "https://github.com/lispyclouds/clj-docker-client"
18+
:url "https://github.com/into-docker/clj-docker-client"
1919
:description "An idiomatic data-driven clojure client for Docker."
2020
:license {:name "LGPL 3.0"
2121
:url "https://www.gnu.org/licenses/lgpl-3.0.en.html"}
2222
:dependencies [[org.clojure/clojure "1.10.1"]
23-
[clj-commons/clj-yaml "0.7.1"]
24-
[metosin/jsonista "0.2.6"]
23+
[clj-commons/clj-yaml "0.7.2"]
24+
[metosin/jsonista "0.2.7"]
2525
[unixsocket-http "1.0.5"]]
2626
:plugins [[lein-ancient "0.6.15"]]
2727
:global-vars {*warn-on-reflection* true}
28-
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.0.632"]]}
28+
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.0.732"]]}
2929
:rebl {:repl-options {:nrepl-middleware [nrebl.middleware/wrap-nrebl]}
3030
:injections [(require '[cognitect.rebl :as rebl])]
3131
:dependencies [[rickmoynihan/nrebl.middleware "0.3.1"]
32-
[org.clojure/core.async "1.2.603"]
33-
[lein-cljfmt "0.6.7"]
34-
[org.openjfx/javafx-fxml "14.0.1"]
35-
[org.openjfx/javafx-controls "14.0.1"]
36-
[org.openjfx/javafx-media "14.0.1"]
37-
[org.openjfx/javafx-swing "14.0.1"]
38-
[org.openjfx/javafx-base "14.0.1"]
39-
[org.openjfx/javafx-web "14.0.1"]]
32+
[org.clojure/core.async "1.3.610"]
33+
[lein-cljfmt "0.7.0"]
34+
[org.openjfx/javafx-fxml "15.0.1"]
35+
[org.openjfx/javafx-controls "15.0.1"]
36+
[org.openjfx/javafx-media "15.0.1"]
37+
[org.openjfx/javafx-swing "15.0.1"]
38+
[org.openjfx/javafx-base "15.0.1"]
39+
[org.openjfx/javafx-web "15.0.1"]]
4040
:resource-paths [~(System/getenv "REBL_PATH")]}}
41-
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner" "--reporter" "kaocha.report.progress/report"]})
41+
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner" "--fail-fast" "--reporter" "kaocha.report.progress/report"]})

0 commit comments

Comments
 (0)