diff --git a/Cargo.toml b/Cargo.toml index 4b2523c..49edaab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.25.0" +version = "0.25.1" authors = ["The rusqlite developers"] edition = "2018" description = "Ergonomic wrapper for SQLite" @@ -123,7 +123,7 @@ bencher = "0.1" [dependencies.libsqlite3-sys] path = "libsqlite3-sys" -version = "0.22.0" +version = "0.22.1" [[test]] name = "config_log" diff --git a/README.md b/README.md index c95fa62..e7d831c 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ You can adjust this behavior in a number of ways: 0.22.0). This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file: ```toml [dependencies.rusqlite] - version = "0.25.0" + version = "0.25.1" features = ["bundled"] ``` * When using the `bundled` feature, the build script will honor `SQLITE_MAX_VARIABLE_NUMBER` and `SQLITE_MAX_EXPR_DEPTH` variables. It will also honor a `LIBSQLITE3_FLAGS` variable, which can have a format like `"-USQLITE_ALPHA -DSQLITE_BETA SQLITE_GAMMA ..."`. That would disable the `SQLITE_ALPHA` flag, and set the `SQLITE_BETA` and `SQLITE_GAMMA` flags. (The initial `-D` can be omitted, as on the last one.) diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index e74d961..d41cd4f 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libsqlite3-sys" -version = "0.22.0" +version = "0.22.1" authors = ["The rusqlite developers"] edition = "2018" repository = "https://github.com/rusqlite/rusqlite"