From 521f8dc481fc55c08b3c0639871b2f5cfa19c0b9 Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Mon, 6 Apr 2020 10:07:55 -0700 Subject: [PATCH] Prep for libsqlite3-sys 0.17.2 (#667) This is essentially to get a release out that contains `in_gecko` so that this library can be used in firefox. Note: This had temporarially been 0.18.0, but as noted in https://github.com/jgallagher/rusqlite/pull/619#discussion_r370435032 there isn't an actual need for this, as it isn't a breaking change. By releasing it as 0.17.2, we can still link rusqlite 0.21 against it, which lets us avoid needing to cut a release of rusqlite just for a gecko-specific linkage flag (I imagine there are a few more rusqlite features we'd want for the next release). --- Cargo.toml | 2 +- libsqlite3-sys/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 59ce198..e1ea514 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ unicase = "2.4.0" [dependencies.libsqlite3-sys] path = "libsqlite3-sys" -version = "0.18" +version = "0.17.2" [[test]] name = "config_log" diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index 2f9ddf8..ea337c2 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libsqlite3-sys" -version = "0.18.0" +version = "0.17.2" authors = ["John Gallagher "] edition = "2018" repository = "https://github.com/jgallagher/rusqlite"