From 98b0432c808460a8a351cb1b33168d322a46f216 Mon Sep 17 00:00:00 2001 From: Thijs Cadier Date: Sat, 23 Jan 2016 17:45:16 +0100 Subject: [PATCH] Bump C driver to 1.3.1 --- 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 d18482e..cce6194 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ bson = "> 0.1.0" [dependencies.mongoc-sys] path = "mongoc-sys" -version = "1.3.0" +version = "1.3.1" [dev-dependencies] chrono = "*" diff --git a/mongoc-sys/Cargo.toml b/mongoc-sys/Cargo.toml index 2ee4aba..c597681 100644 --- a/mongoc-sys/Cargo.toml +++ b/mongoc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mongoc-sys" -version = "1.3.0" +version = "1.3.1" 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 726e03d..2c0955d 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.0"; // Should be the same as the version in the manifest +static VERSION: &'static str = "1.3.1"; // Should be the same as the version in the manifest fn main() { let out_dir_var = env::var("OUT_DIR").unwrap();