diff --git a/CHANGELOG.md b/CHANGELOG.md index 99ce485..ee439ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ +0.12.0 / 2022-09-23 +=================== + + * Clippy fixes + * Merge pull request #18 from @pganalyze / connection-manager + * Add async methods for callers that run inside an async executor + * Replace use of r2d2 with redis-rs ConnectionManager + 0.11.0 / 2021-12-09 =================== diff --git a/Cargo.toml b/Cargo.toml index c071b7b..e1e992a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sidekiq" # When updating version, also modify html_root_url in the src/lib.rs file. -version = "0.11.0" +version = "0.12.0" authors = ["Laurent Arnoud "] description = "Rust Sidekiq Client" repository = "https://github.com/spk/rust-sidekiq.git" diff --git a/README.md b/README.md index fc26db1..e89cfb2 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ format](https://github.com/mperham/sidekiq/wiki/Job-Format) as reference. ``` toml [dependencies] -sidekiq = "0.10" +sidekiq = "0.12" ``` ## Default environment variables diff --git a/src/lib.rs b/src/lib.rs index 72744ba..19711a7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ //! //! `REDIS_URL`="redis://127.0.0.1/" //! -#![doc(html_root_url = "https://docs.rs/sidekiq/0.11.0")] +#![doc(html_root_url = "https://docs.rs/sidekiq/0.12.0")] #![deny(warnings)] #![crate_name = "sidekiq"]