Skip to content

Commit

Permalink
Release v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spk committed Sep 23, 2022
1 parent a7d5a3b commit 1c5812f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
===================

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <laurent@spkdev.net>"]
description = "Rust Sidekiq Client"
repository = "https://github.com/spk/rust-sidekiq.git"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down

0 comments on commit 1c5812f

Please sign in to comment.