Export sqlx_core::Transaction.

This commit is contained in:
Anthony Dodd 2020-02-24 20:45:41 -06:00
parent 18a925f1c2
commit 5dae1b6842
No known key found for this signature in database
GPG key ID: 6E0613E0F653DBC0
2 changed files with 16 additions and 9 deletions

View file

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
- Export sqlx_core::Transaction.
## 0.2.5 - 2020-02-01 ## 0.2.5 - 2020-02-01
### Fixed ### Fixed

View file

@ -13,6 +13,7 @@ pub use sqlx_core::{arguments, describe, error, pool, row, types};
// Types // Types
pub use sqlx_core::{ pub use sqlx_core::{
Connect, Connection, Database, Error, Executor, FromRow, Pool, Query, QueryAs, Result, Row, Connect, Connection, Database, Error, Executor, FromRow, Pool, Query, QueryAs, Result, Row,
Transaction,
}; };
// Functions // Functions