File tree 4 files changed +11
-3
lines changed
4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
2
+ 0.12.0 / 2022-09-23
3
+ ===================
4
+
5
+ * Clippy fixes
6
+ * Merge pull request #18 from @pganalyze / connection-manager
7
+ * Add async methods for callers that run inside an async executor
8
+ * Replace use of r2d2 with redis-rs ConnectionManager
9
+
2
10
0.11.0 / 2021-12-09
3
11
===================
4
12
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " sidekiq"
3
3
# When updating version, also modify html_root_url in the src/lib.rs file.
4
- version = " 0.11 .0"
4
+ version = " 0.12 .0"
5
5
authors = [
" Laurent Arnoud <[email protected] >" ]
6
6
description = " Rust Sidekiq Client"
7
7
repository = " https://github.com/spk/rust-sidekiq.git"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ format](https://github.com/mperham/sidekiq/wiki/Job-Format) as reference.
15
15
16
16
``` toml
17
17
[dependencies ]
18
- sidekiq = " 0.10 "
18
+ sidekiq = " 0.12 "
19
19
```
20
20
21
21
## Default environment variables
Original file line number Diff line number Diff line change 6
6
//!
7
7
//! `REDIS_URL`="redis://127.0.0.1/"
8
8
//!
9
- #![ doc( html_root_url = "https://docs.rs/sidekiq/0.11 .0" ) ]
9
+ #![ doc( html_root_url = "https://docs.rs/sidekiq/0.12 .0" ) ]
10
10
#![ deny( warnings) ]
11
11
#![ crate_name = "sidekiq" ]
12
12
You can’t perform that action at this time.
0 commit comments