We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f613f37 + 82560aa commit a86ece0Copy full SHA for a86ece0
2 files changed
CHANGELOG.md
@@ -4,6 +4,13 @@ All user visible changes to this project will be documented in this file.
4
This project adheres to [Semantic Versioning](http://semver.org/), as described
5
for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
6
7
+## [1.1.1] - 2018-01-15
8
+
9
+### Added
10
11
+* Added `diesel::r2d2::PoolError` as an alias for `r2d2::Error`. Previously this
12
+ type was inaccessible due to `diesel::r2d2::Error`.
13
14
## [1.1.0] - 2018-01-15
15
16
### Added
diesel/src/r2d2.rs
@@ -3,6 +3,8 @@
3
extern crate r2d2;
pub use self::r2d2::*;
+/// A re-export of r2d2::Error, which is only used by methods on r2d2::Pool.
+pub type PoolError = self::r2d2::Error;
use std::convert::Into;
use std::fmt;
0 commit comments