make AndThenFactory::new public

This commit is contained in:
Nikolay Kim 2022-07-07 21:56:27 +06:00
parent f1bffbbe52
commit 0f28860fed
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes # Changes
## [0.3.3] - 2022-07-08
* Revert cleanups
## [0.3.2] - 2022-07-07 ## [0.3.2] - 2022-07-07
* Add ?Sized to Rc service #125 * Add ?Sized to Rc service #125

View file

@ -1,6 +1,6 @@
[package] [package]
name = "ntex-service" name = "ntex-service"
version = "0.3.1" version = "0.3.3"
authors = ["ntex contributors <team@ntex.rs>"] authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex service" description = "ntex service"
keywords = ["network", "framework", "async", "futures"] keywords = ["network", "framework", "async", "futures"]

View file

@ -138,7 +138,7 @@ where
Cfg: Clone, Cfg: Clone,
{ {
/// Create new `AndThenFactory` combinator /// Create new `AndThenFactory` combinator
pub(crate) fn new(a: A, b: B) -> Self { pub fn new(a: A, b: B) -> Self {
Self { Self {
inner: Rc::new((a, b)), inner: Rc::new((a, b)),
_t: PhantomData, _t: PhantomData,