From 2072dcade108a5fa6bc054ce6042c33ee3716650 Mon Sep 17 00:00:00 2001 From: Niel Drummond Date: Sun, 19 Jun 2022 15:56:12 +0100 Subject: [PATCH 1/2] Remove RUSTSEC-2020-0159 ignore from audit --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d75559c4..688d8194 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,7 +70,7 @@ jobs: - setup_remote_docker - run: docker build -t bollard . # RUSTSEC-2020-0159 https://github.com/chronotope/chrono/issues/602 - - run: docker run -ti --rm bollard bash -c "cargo install cargo-audit && cargo audit --deny warnings --ignore=RUSTSEC-2020-0159 --ignore=RUSTSEC-2020-0071" + - run: docker run -ti --rm bollard bash -c "cargo install cargo-audit && cargo audit --deny warnings --ignore=RUSTSEC-2020-0071" test_fmt: docker: - image: docker:20.10.16 From 6f852b3367f7623d650ece49ab97226830605b2c Mon Sep 17 00:00:00 2001 From: Niel Drummond Date: Sun, 19 Jun 2022 15:56:32 +0100 Subject: [PATCH 2/2] Release 0.13 --- Cargo.toml | 2 +- README.md | 5 ++++- src/lib.rs | 5 ++++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b8c79baa..a4dc2b22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bollard" description = "An asynchronous Docker daemon API" -version = "0.12.0" +version = "0.13.0" authors = [ "Bollard contributors" ] license = "Apache-2.0" homepage = "https://github.com/fussybeaver/bollard" diff --git a/README.md b/README.md index 73c3a097..54cf942f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add the following to your `Cargo.toml` file ```nocompile [dependencies] -bollard = "0.12" +bollard = "0.13" ``` ## API @@ -27,6 +27,9 @@ bollard = "0.12" [API docs](https://docs.rs/bollard/). +Version 0.13 introduces an optional `chrono` and alternative mutually exclusive `time` feature +flag to represent the date format. This version matches the moby v20.10.16 server API. + Version 0.11 re-enables Windows Named Pipe support. As of version 0.6, this project now generates API stubs from the upstream Docker-maintained diff --git a/src/lib.rs b/src/lib.rs index 4dd17d96..1d50d77b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,7 +19,7 @@ //! //! ```nocompile //! [dependencies] -//! bollard = "0.12" +//! bollard = "0.13" //! ``` //! //! # API @@ -27,6 +27,9 @@ //! //! [API docs](https://docs.rs/bollard/). //! +//! Version 0.13 introduces an optional `chrono` and alternative mutually exclusive `time` feature +//! flag to represent the date format. This version matches the moby v20.10.16 server API. +//! //! Version 0.11 re-enables Windows Named Pipe support. //! //! As of version 0.6, this project now generates API stubs from the upstream Docker-maintained