From ef095d04646c5c5d70a3ee02133154b6ee085dd2 Mon Sep 17 00:00:00 2001 From: Ayose Date: Sat, 20 Aug 2016 18:57:22 +0100 Subject: [PATCH] Upgrade C driver to 1.4.0 --- Cargo.toml | 2 +- mongoc-sys/Cargo.toml | 2 +- mongoc-sys/build.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ce6d17b..6d4d7c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ bson = "> 0.1.0" [dependencies.mongoc-sys] path = "mongoc-sys" -version = "1.3.6" +version = "1.4.0" [dev-dependencies] chrono = "> 0.2.0" diff --git a/mongoc-sys/Cargo.toml b/mongoc-sys/Cargo.toml index 7a8e79b..f7d1c7f 100644 --- a/mongoc-sys/Cargo.toml +++ b/mongoc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mongoc-sys" -version = "1.3.6" +version = "1.4.0" 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 b482978..c44fa68 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.5"; // Should be the same major version as in the manifest +static VERSION: &'static str = "1.4.0"; // Should be the same major version as in the manifest fn main() { let out_dir_var = env::var("OUT_DIR").unwrap();