Skip to content

Commit

Permalink
Bump to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spk committed Jan 6, 2021
1 parent 44c2998 commit a6dc328
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@

0.9.0 / 2021-01-06
==================

* Merge pull request #12 from @liaden / patch-1
* Make ClientError public
* Cargo.toml: Rust 2018
* Cargo.toml: Makefile => Justfile
* Switch Makefile to Justfile
* Update README [ci skip]
* Implement std::error::Error for ClientError
* Remove deprecated Error::description and Error::cause
* Update r2d2_redis to 0.13
* Rust edition 2018 fix
* Fix bench for simple push
* Use of deprecated item 'try': use the '?' operator instead

0.8.6 / 2019-10-21
==================

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.8.6"
version = "0.9.0"
authors = ["Laurent Arnoud <[email protected]>"]
description = "Rust Sidekiq Client"
repository = "https://github.com/spk/rust-sidekiq.git"
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.8.6")]
#![doc(html_root_url = "https://docs.rs/sidekiq/0.9.0")]
#![deny(warnings)]
#![crate_name = "sidekiq"]

Expand Down

0 comments on commit a6dc328

Please sign in to comment.