Bump version for new sled

This commit is contained in:
asonix 2019-10-28 18:47:23 -05:00
parent a267fddd38
commit f254b24814
4 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "background-jobs" name = "background-jobs"
description = "Background Jobs implemented with sled, actix, and futures" description = "Background Jobs implemented with sled, actix, and futures"
version = "0.6.1" version = "0.7.0"
license-file = "LICENSE" license-file = "LICENSE"
authors = ["asonix <asonix@asonix.dog>"] authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/Aardwolf/background-jobs" repository = "https://git.asonix.dog/Aardwolf/background-jobs"
@ -30,6 +30,6 @@ path = "jobs-actix"
optional = true optional = true
[dependencies.background-jobs-sled-storage] [dependencies.background-jobs-sled-storage]
version = "0.2.0" version = "0.3.0"
path = "jobs-sled" path = "jobs-sled"
optional = true optional = true

View file

@ -14,12 +14,12 @@ might not be the best experience.
```toml ```toml
[dependencies] [dependencies]
actix = "0.8" actix = "0.8"
background-jobs = "0.6.0" background-jobs = "0.7.0"
failure = "0.1" failure = "0.1"
futures = "0.1" futures = "0.1"
serde = "1.0" serde = "1.0"
serde_drive = "1.0" serde_drive = "1.0"
sled = "0.28" sled = "0.29"
``` ```
#### To get started with Background Jobs, first you should define a job. #### To get started with Background Jobs, first you should define a job.

View file

@ -8,9 +8,9 @@ edition = "2018"
[dependencies] [dependencies]
actix = "0.8" actix = "0.8"
background-jobs = { version = "0.6.0", path = "../.." } background-jobs = { version = "0.7.0", path = "../.." }
failure = "0.1" failure = "0.1"
futures = "0.1" futures = "0.1"
sled-extensions = "0.1.0" sled-extensions = "0.2.0"
serde = "1.0" serde = "1.0"
serde_derive = "1.0" serde_derive = "1.0"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "background-jobs-sled-storage" name = "background-jobs-sled-storage"
description = "Sled storage backend for background-jobs" description = "Sled storage backend for background-jobs"
version = "0.2.0" version = "0.3.0"
license-file = "../LICENSE" license-file = "../LICENSE"
authors = ["asonix <asonix@asonix.dog>"] authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/Aardwolf/background-jobs" repository = "https://git.asonix.dog/Aardwolf/background-jobs"
@ -13,4 +13,4 @@ edition = "2018"
[dependencies] [dependencies]
background-jobs-core = { version = "0.6", path = "../jobs-core" } background-jobs-core = { version = "0.6", path = "../jobs-core" }
chrono = "0.4" chrono = "0.4"
sled-extensions = { version = "0.1", features = ["bincode", "cbor"] } sled-extensions = { version = "0.2", features = ["bincode", "cbor"] }