Bump versions

This commit is contained in:
asonix 2019-05-25 16:41:58 -05:00
parent 2a6612225a
commit 875eec57dd
4 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "background-jobs"
description = "Background Jobs implemented with sled, actix, and futures"
version = "0.5.0"
version = "0.5.1"
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/Aardwolf/background-jobs"
@ -30,6 +30,6 @@ path = "jobs-actix"
optional = true
[dependencies.background-jobs-sled-storage]
version = "0.1"
version = "0.1.1"
path = "jobs-sled"
optional = true

View file

@ -10,7 +10,7 @@ might not be the best experience.
```toml
[dependencies]
actix = "0.8"
background-jobs = "0.5"
background-jobs = "0.5.1"
failure = "0.1"
futures = "0.1"
serde = "1.0"

View file

@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
actix = "0.8"
background-jobs = { version = "0.5", path = "../.." }
background-jobs = { version = "0.5.1", path = "../.." }
failure = "0.1"
futures = "0.1"
serde = "1.0"

View file

@ -29,7 +29,7 @@
//! ```toml
//! [dependencies]
//! actix = "0.8"
//! background-jobs = "0.5"
//! background-jobs = "0.5.1"
//! failure = "0.1"
//! futures = "0.1"
//! serde = "1.0"