diff --git a/Cargo.toml b/Cargo.toml index 3adf08e..62dbd1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,4 +14,4 @@ bson = "*" [dependencies.mongo_c_driver_wrapper] path = "mongo_c_driver_wrapper" -version = "1.1.8" +version = "1.1.7" diff --git a/mongo_c_driver_wrapper/Cargo.toml b/mongo_c_driver_wrapper/Cargo.toml index d86c595..6f8d7fc 100644 --- a/mongo_c_driver_wrapper/Cargo.toml +++ b/mongo_c_driver_wrapper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mongo_c_driver_wrapper" -version = "1.1.8" +version = "1.1.7" build = "build.rs" authors = ["Thijs Cadier "] diff --git a/mongo_c_driver_wrapper/build.rs b/mongo_c_driver_wrapper/build.rs index 4571986..7d8dd31 100644 --- a/mongo_c_driver_wrapper/build.rs +++ b/mongo_c_driver_wrapper/build.rs @@ -8,7 +8,7 @@ use std::fs::PathExt; use std::path::Path; use std::process::Command; -static VERSION: &'static str = "1.1.8"; // Should be the same as the version in the manifest +static VERSION: &'static str = "1.1.7"; // Should be the same as the version in the manifest fn main() { let out_dir = env::var("OUT_DIR").unwrap();