Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
- Support v1.41 docker API
- Update dependencies
- Fix docs
- Adapt tests for older Actions docker version
  • Loading branch information
lispyclouds committed Dec 12, 2020
1 parent 5778f1b commit 5d3f1a3
Show file tree
Hide file tree
Showing 7 changed files with 13,110 additions and 666 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,25 @@ See [this](https://cljdoc.org/d/lispyclouds/clj-docker-client/0.3.2/doc/readme)
### Installation
Leiningen/Boot
```clojure
[lispyclouds/clj-docker-client "1.0.1"]
[lispyclouds/clj-docker-client "1.0.2"]
```

Clojure CLI/deps.edn
```clojure
{lispyclouds/clj-docker-client {:mvn/version "1.0.1"}}
{lispyclouds/clj-docker-client {:mvn/version "1.0.2"}}
```

Gradle
```groovy
compile 'lispyclouds:clj-docker-client:1.0.1'
compile 'lispyclouds:clj-docker-client:1.0.2'
```

Maven
```xml
<dependency>
<groupId>lispyclouds</groupId>
<artifactId>clj-docker-client</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>
```

Expand Down
28 changes: 14 additions & 14 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,29 @@
; You should have received a copy of the GNU Lesser General Public License
; along with clj-docker-client. If not, see <http://www.gnu.org/licenses/>.

(defproject lispyclouds/clj-docker-client "1.0.1"
(defproject lispyclouds/clj-docker-client "1.0.2"
:author "Rahul De <[email protected]>"
:url "https://github.com/lispyclouds/clj-docker-client"
:url "https://github.com/into-docker/clj-docker-client"
:description "An idiomatic data-driven clojure client for Docker."
:license {:name "LGPL 3.0"
:url "https://www.gnu.org/licenses/lgpl-3.0.en.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[clj-commons/clj-yaml "0.7.1"]
[metosin/jsonista "0.2.6"]
[clj-commons/clj-yaml "0.7.2"]
[metosin/jsonista "0.2.7"]
[unixsocket-http "1.0.5"]]
:plugins [[lein-ancient "0.6.15"]]
:global-vars {*warn-on-reflection* true}
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.0.632"]]}
:profiles {:kaocha {:dependencies [[lambdaisland/kaocha "1.0.732"]]}
:rebl {:repl-options {:nrepl-middleware [nrebl.middleware/wrap-nrebl]}
:injections [(require '[cognitect.rebl :as rebl])]
:dependencies [[rickmoynihan/nrebl.middleware "0.3.1"]
[org.clojure/core.async "1.2.603"]
[lein-cljfmt "0.6.7"]
[org.openjfx/javafx-fxml "14.0.1"]
[org.openjfx/javafx-controls "14.0.1"]
[org.openjfx/javafx-media "14.0.1"]
[org.openjfx/javafx-swing "14.0.1"]
[org.openjfx/javafx-base "14.0.1"]
[org.openjfx/javafx-web "14.0.1"]]
[org.clojure/core.async "1.3.610"]
[lein-cljfmt "0.7.0"]
[org.openjfx/javafx-fxml "15.0.1"]
[org.openjfx/javafx-controls "15.0.1"]
[org.openjfx/javafx-media "15.0.1"]
[org.openjfx/javafx-swing "15.0.1"]
[org.openjfx/javafx-base "15.0.1"]
[org.openjfx/javafx-web "15.0.1"]]
:resource-paths [~(System/getenv "REBL_PATH")]}}
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner" "--reporter" "kaocha.report.progress/report"]})
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner" "--fail-fast" "--reporter" "kaocha.report.progress/report"]})
Loading

0 comments on commit 5d3f1a3

Please sign in to comment.