diff --git a/Cargo.toml b/Cargo.toml index 9460198..be1c318 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,6 @@ git = "https://github.com/zonyitoo/bson-rs.git" [dependencies.mongoc-sys] path = "mongoc-sys" -version = "1.1.10" [dev-dependencies] chrono = "*" diff --git a/mongoc-sys/Cargo.toml b/mongoc-sys/Cargo.toml index 3dcf481..8790384 100644 --- a/mongoc-sys/Cargo.toml +++ b/mongoc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mongoc-sys" -version = "1.1.10" +version = "1.1.11" authors = ["Thijs Cadier "] build = "build.rs" links = "mongoc" diff --git a/mongoc-sys/build.rs b/mongoc-sys/build.rs index ad34c6b..f8857ad 100644 --- a/mongoc-sys/build.rs +++ b/mongoc-sys/build.rs @@ -7,7 +7,7 @@ use std::fs::PathExt; use std::path::Path; use std::process::Command; -static VERSION: &'static str = "1.1.10"; // Should be the same as the version in the manifest +static VERSION: &'static str = "1.1.11"; // Should be the same as the version in the manifest fn main() { let out_dir_var = env::var("OUT_DIR").unwrap();