Skip to content

Commit 1c5812f

Browse files
committed
Release v0.12.0
1 parent a7d5a3b commit 1c5812f

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11

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+
210
0.11.0 / 2021-12-09
311
===================
412

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "sidekiq"
33
# When updating version, also modify html_root_url in the src/lib.rs file.
4-
version = "0.11.0"
4+
version = "0.12.0"
55
authors = ["Laurent Arnoud <[email protected]>"]
66
description = "Rust Sidekiq Client"
77
repository = "https://github.com/spk/rust-sidekiq.git"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ format](https://github.com/mperham/sidekiq/wiki/Job-Format) as reference.
1515

1616
``` toml
1717
[dependencies]
18-
sidekiq = "0.10"
18+
sidekiq = "0.12"
1919
```
2020

2121
## Default environment variables

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! `REDIS_URL`="redis://127.0.0.1/"
88
//!
9-
#![doc(html_root_url = "https://docs.rs/sidekiq/0.11.0")]
9+
#![doc(html_root_url = "https://docs.rs/sidekiq/0.12.0")]
1010
#![deny(warnings)]
1111
#![crate_name = "sidekiq"]
1212

0 commit comments

Comments
 (0)