Add since and note for all deprecation tags.

This commit is contained in:
John Gallagher
2016-05-29 20:36:20 -04:00
parent f817ec86bc
commit 7c0eba0475
4 changed files with 11 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
use {Result, Connection};
/// Old name for `LoadExtensionGuard`. `SqliteLoadExtensionGuard` is deprecated.
#[deprecated]
#[deprecated(since = "0.6.0", note = "Use LoadExtensionGuard instead")]
pub type SqliteLoadExtensionGuard<'conn> = LoadExtensionGuard<'conn>;
/// RAII guard temporarily enabling SQLite extensions to be loaded.