diff --git a/Cargo.toml b/Cargo.toml index 62dbd1e..83cd884 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.7" +version = "1.1.10" diff --git a/mongo_c_driver_wrapper/Cargo.toml b/mongo_c_driver_wrapper/Cargo.toml index 6f8d7fc..fd228d0 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.7" +version = "1.1.10" build = "build.rs" authors = ["Thijs Cadier "] diff --git a/mongo_c_driver_wrapper/build.rs b/mongo_c_driver_wrapper/build.rs index 7d8dd31..a74ea5e 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.7"; // Should be the same as the version in the manifest +static VERSION: &'static str = "1.1.10"; // Should be the same as the version in the manifest fn main() { let out_dir = env::var("OUT_DIR").unwrap();