From 56f1d837494972743090e50bad55b1ccaaa2dd0a Mon Sep 17 00:00:00 2001 From: Thorsten Blum Date: Sat, 7 Dec 2024 00:14:09 +0100 Subject: [PATCH] Bump version --- Cargo.toml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9012763..e58ab36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clamav-client" -version = "1.0.1" +version = "2.0.0" edition = "2021" rust-version = "1.63.0" authors = ["Thorsten Blum "] diff --git a/README.md b/README.md index 117bfb2..4d0dc66 100644 --- a/README.md +++ b/README.md @@ -15,28 +15,28 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -clamav-client = "1.0.1" +clamav-client = "2.0.0" ``` To use the `async` functions in `clamav_client::tokio`, add this to your `Cargo.toml`: ```toml [dependencies] -clamav-client = { version = "1.0.1", features = ["tokio"] } +clamav-client = { version = "2.0.0", features = ["tokio"] } ``` To scan Tokio streams, enable the `tokio-stream` feature instead and add this to your `Cargo.toml`: ```toml [dependencies] -clamav-client = { version = "1.0.1", features = ["tokio-stream"] } +clamav-client = { version = "2.0.0", features = ["tokio-stream"] } ``` Support for `async-std` is also available by enabling the `async-std` feature: ```toml [dependencies] -clamav-client = { version = "1.0.1", features = ["async-std"] } +clamav-client = { version = "2.0.0", features = ["async-std"] } ``` ## Migrations