From f1820c3c0b770eef2474fcdfaa284062ffc6c003 Mon Sep 17 00:00:00 2001 From: gwenn Date: Sun, 21 Jul 2024 14:56:06 +0200 Subject: [PATCH] Prepare next release --- Cargo.toml | 2 +- README.md | 2 +- libsqlite3-sys/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e5c3f41..0a20250 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -139,7 +139,7 @@ bencher = "0.1" [dependencies.libsqlite3-sys] path = "libsqlite3-sys" -version = "0.29.0" +version = "0.30.0" [[test]] name = "auto_ext" diff --git a/README.md b/README.md index 82aa2e6..a423a63 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ You can adjust this behavior in a number of ways: [cc](https://crates.io/crates/cc) crate to compile SQLite or SQLCipher from source and link against that. This source is embedded in the `libsqlite3-sys` crate and is currently SQLite 3.46.0 (as of `rusqlite` 0.32.0 / `libsqlite3-sys` - 0.29.0). This is probably the simplest solution to any build problems. You can enable this by adding the following in your `Cargo.toml` file: + 0.30.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.32.0" diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index 551b264..f9c3704 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libsqlite3-sys" -version = "0.29.0" +version = "0.30.0" authors = ["The rusqlite developers"] edition = "2021" repository = "https://github.com/rusqlite/rusqlite"