diff --git a/Cargo.toml b/Cargo.toml index 6482dfe..3e70dda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ bson = "> 0.1.0" [dependencies.mongoc-sys] path = "mongoc-sys" -version = "1.3.4" +version = "1.3.5" [dev-dependencies] chrono = "> 0.2.0" diff --git a/mongoc-sys/Cargo.toml b/mongoc-sys/Cargo.toml index d830f10..513015c 100644 --- a/mongoc-sys/Cargo.toml +++ b/mongoc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mongoc-sys" -version = "1.3.4" +version = "1.3.5" description = "Sys package with installer and bindings for mongoc" authors = ["Thijs Cadier "] build = "build.rs" diff --git a/mongoc-sys/build.rs b/mongoc-sys/build.rs index 5f27419..69f48b5 100644 --- a/mongoc-sys/build.rs +++ b/mongoc-sys/build.rs @@ -2,7 +2,7 @@ use std::env; use std::path::Path; use std::process::Command; -static VERSION: &'static str = "1.3.4"; // Should be the same as the version in the manifest +static VERSION: &'static str = "1.3.5"; // Should be the same as the version in the manifest fn main() { let out_dir_var = env::var("OUT_DIR").unwrap();