From 86d3d180a0879b8d6ee86023f495bd1e12f6fbf5 Mon Sep 17 00:00:00 2001 From: Thijs Cadier Date: Thu, 24 Sep 2015 10:54:55 +0200 Subject: [PATCH] Bump mongo c driver to 1.1.11 --- Cargo.toml | 1 - mongoc-sys/Cargo.toml | 2 +- mongoc-sys/build.rs | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) 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();