From 875eec57dda438214296a1af8727c71e63d7b1d5 Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 25 May 2019 16:41:58 -0500 Subject: [PATCH] Bump versions --- Cargo.toml | 4 ++-- README.md | 2 +- examples/actix-example/Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 57d1d13..6744002 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] 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 diff --git a/README.md b/README.md index 111e2e2..70ac26f 100644 --- a/README.md +++ b/README.md @@ -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" diff --git a/examples/actix-example/Cargo.toml b/examples/actix-example/Cargo.toml index bcde15d..71a3aea 100644 --- a/examples/actix-example/Cargo.toml +++ b/examples/actix-example/Cargo.toml @@ -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" diff --git a/src/lib.rs b/src/lib.rs index bc54781..a17a060 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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"