8000 Release v0.19 by fussybeaver · Pull Request #530 · fussybeaver/bollard · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Release v0.19 #530

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

Merged
merged 2 commits into from
May 18, 2025
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bollard"
description = "An asynchronous Docker daemon API"
version = "0.19.0-rc1"
version = "0.19.0"
authors = [ "Bollard contributors" ]
license = "Apache-2.0"
homepage = "https://github.com/fussybeaver/bollard"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.85.0-slim
FROM rust:1.87.0-slim

WORKDIR /usr/src/bollard

Expand Down
1 change: 1 addition & 0 deletions examples/attach_container.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error + 'static>> {

// pipe stdin into the docker attach stream input
spawn(async move {
#[allow(clippy::unbuffered_bytes)]
let mut stdin = async_stdin().bytes();
loop {
if let Some(Ok(byte)) = stdin.next() {
Expand Down
1 change: 1 addition & 0 deletions examples/exec_term.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error + 'static>> {
{
// pipe stdin into the docker exec stream input
spawn(async move {
#[allow(clippy::unbuffered_bytes)]
let mut stdin = async_stdin().bytes();
loop {
if let Some(Ok(byte)) = stdin.next() {
Expand Down
5 changes: 1 addition & 4 deletions src/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,7 @@ impl AsyncRead for StreamReader {
return Poll::Pending;
}
Poll::Ready(Some(Err(e))) => {
return Poll::Ready(Err(io::Error::new(
io::ErrorKind::Other,
e.to_string(),
)));
return Poll::Ready(Err(io::Error::other(e.to_string())));
}
},
}
Expand Down
0