Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.13 release #241

Merged
merged 2 commits into from Jun 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -19,14 +19,17 @@ Add the following to your `Cargo.toml` file

```nocompile
[dependencies]
bollard = "0.12"
bollard = "0.13"
```

## API
### Documentation

[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
Expand Down
5 changes: 4 additions & 1 deletion src/lib.rs
Expand Up @@ -19,14 +19,17 @@
//!
//! ```nocompile
//! [dependencies]
//! bollard = "0.12"
//! bollard = "0.13"
//! ```
//!
//! # API
//! ## Documentation
//!
//! [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
Expand Down