Diesel is 0.11.1 not 0.11.0

The build is failing because with an empty Cargo.lock, Diesel is
resolving to 0.11.1, but the replace is only for 0.11.0
This commit is contained in:
Sean Griffin 2017-02-18 12:54:00 -05:00
parent fa1cd79396
commit 7deef762ee
2 changed files with 2 additions and 2 deletions

View File

@ -13,6 +13,6 @@ members = [
]
[replace]
"diesel:0.11.0" = { path = "diesel" }
"diesel:0.11.1" = { path = "diesel" }
"diesel_codegen:0.11.0" = { path = "diesel_codegen" }
"diesel_infer_schema:0.11.0" = { path = "diesel_infer_schema" }

View File

@ -1,6 +1,6 @@
[package]
name = "diesel"
version = "0.11.0"
version = "0.11.1"
authors = ["Sean Griffin <sean@seantheprogrammer.com>"]
license = "MIT OR Apache-2.0"
description = "A safe, extensible ORM and Query builder"