Skip to content

Commit

Permalink
Merge pull request #241 from fussybeaver/ND-0.13-release
Browse files Browse the repository at this point in the history
0.13 release
  • Loading branch information
fussybeaver committed Jun 20, 2022
2 parents 80da294 + 6f852b3 commit e1046a4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
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

0 comments on commit e1046a4

Please sign in to comment.