Skip to content

Commit a6dc328

Browse files
committed
Bump to 0.9.0
1 parent 44c2998 commit a6dc328

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11

2+
0.9.0 / 2021-01-06
3+
==================
4+
5+
* Merge pull request #12 from @liaden / patch-1
6+
* Make ClientError public
7+
* Cargo.toml: Rust 2018
8+
* Cargo.toml: Makefile => Justfile
9+
* Switch Makefile to Justfile
10+
* Update README [ci skip]
11+
* Implement std::error::Error for ClientError
12+
* Remove deprecated Error::description and Error::cause
13+
* Update r2d2_redis to 0.13
14+
* Rust edition 2018 fix
15+
* Fix bench for simple push
16+
* Use of deprecated item 'try': use the '?' operator instead
17+
218
0.8.6 / 2019-10-21
319
==================
420

Cargo.toml

Lines changed: 1 addition & 1 deletion
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.8.6"
4+
version = "0.9.0"
55
authors = ["Laurent Arnoud <[email protected]>"]
66
description = "Rust Sidekiq Client"
77
repository = "https://github.com/spk/rust-sidekiq.git"

src/lib.rs

Lines changed: 1 addition & 1 deletion
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.8.6")]
9+
#![doc(html_root_url = "https://docs.rs/sidekiq/0.9.0")]
1010
#![deny(warnings)]
1111
#![crate_name = "sidekiq"]
1212

0 commit comments

Comments
 (0)