From 60aca5507b9346865330dd5b5806dedd09a9c5cd Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 29 May 2017 10:03:05 -0400 Subject: [PATCH 1/6] Add contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 81870c9..95cc221 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -18,3 +18,4 @@ rusqlite contributors * [Omar Ferrer](https://github.com/chamakits) * [Lee Jenkins](https://github.com/reddraggone9) * [miedzinski](https://github.com/miedzinski) +* [aidanhs](https://github.com/aidanhs) From 99dfc51f562cd79bc26a04118344e8fd379242ad Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 29 May 2017 10:08:52 -0400 Subject: [PATCH 2/6] Add contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 95cc221..f159b4a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -19,3 +19,4 @@ rusqlite contributors * [Lee Jenkins](https://github.com/reddraggone9) * [miedzinski](https://github.com/miedzinski) * [aidanhs](https://github.com/aidanhs) +* [Steven Fackler](https://github.com/sfackler) From 5e86b655872749b984763bfd3553ce6a18c8d87d Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 29 May 2017 10:12:59 -0400 Subject: [PATCH 3/6] Add contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f159b4a..aac8e4c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -20,3 +20,4 @@ rusqlite contributors * [miedzinski](https://github.com/miedzinski) * [aidanhs](https://github.com/aidanhs) * [Steven Fackler](https://github.com/sfackler) +* [Davide Aversa](https://github.com/THeK3nger) From e87318317083c2abcc88eb17d5fbf77d66b6165c Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 29 May 2017 10:23:42 -0400 Subject: [PATCH 4/6] Add contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index aac8e4c..078ec47 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -21,3 +21,4 @@ rusqlite contributors * [aidanhs](https://github.com/aidanhs) * [Steven Fackler](https://github.com/sfackler) * [Davide Aversa](https://github.com/THeK3nger) +* [mcgoo](https://github.com/mcgoo) From 90c01b900dc7e0eebc04ecd771cf6cd5a8f9d7b5 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 29 May 2017 10:34:02 -0400 Subject: [PATCH 5/6] Update Changelog --- Changelog.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Changelog.md b/Changelog.md index cca0d8f..712d67e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,10 @@ +# Version 0.12.0 (2017-05-29) + +* Defines HAVE\_USLEEP when building with a bundled SQLite (#263). +* Updates dependencies to their latest versions, particularly serde to 1.0. +* Adds support for vcpkg on Windows. +* Adds `ToSql` impls for `str` and `[u8]`. + # Version 0.11.0 (2017-04-06) * Avoid publicly exporting SQLite constants multiple times from libsqlite3-sys. From 58aca46a3d741ed14f34a628f14ac4bd4491e3d1 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 29 May 2017 13:42:15 -0400 Subject: [PATCH 6/6] Bump version to 0.12.0. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6a163d7..5f4e200 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.11.0" +version = "0.12.0" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite"