diff --git a/CHANGELOG.md b/CHANGELOG.md index 42cda44..cd6a19c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ +0.10.0 / 2021-10-27 +=================== + + * Merge pull request #15 from Norio4/add_perform_in + * Add public function perform_in() for Client + * Update badge and others minor updates + * Merge pull request #14 from spk/dependabot/add-v2-config-file + * Upgrade to GitHub-native Dependabot + 0.9.1 / 2021-04-05 ================== diff --git a/Cargo.toml b/Cargo.toml index c3fb827..94ba674 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.9.1" +version = "0.10.0" authors = ["Laurent Arnoud "] description = "Rust Sidekiq Client" repository = "https://github.com/spk/rust-sidekiq.git" diff --git a/src/lib.rs b/src/lib.rs index a95ea70..4ea373a 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.9.1")] +#![doc(html_root_url = "https://docs.rs/sidekiq/0.10.0")] #![deny(warnings)] #![crate_name = "sidekiq"]