mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-14 00:07:05 +00:00
Export sqlx_core::Transaction.
This commit is contained in:
parent
18a925f1c2
commit
5dae1b6842
2 changed files with 16 additions and 9 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue