diff --git a/ntex-service/CHANGES.md b/ntex-service/CHANGES.md index c55a0306..adf53a58 100644 --- a/ntex-service/CHANGES.md +++ b/ntex-service/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.3.3] - 2022-07-08 + +* Revert cleanups + ## [0.3.2] - 2022-07-07 * Add ?Sized to Rc service #125 diff --git a/ntex-service/Cargo.toml b/ntex-service/Cargo.toml index 4ed29b17..fe775463 100644 --- a/ntex-service/Cargo.toml +++ b/ntex-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-service" -version = "0.3.1" +version = "0.3.3" authors = ["ntex contributors "] description = "ntex service" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-service/src/and_then.rs b/ntex-service/src/and_then.rs index a9643257..8721fa49 100644 --- a/ntex-service/src/and_then.rs +++ b/ntex-service/src/and_then.rs @@ -138,7 +138,7 @@ where Cfg: Clone, { /// Create new `AndThenFactory` combinator - pub(crate) fn new(a: A, b: B) -> Self { + pub fn new(a: A, b: B) -> Self { Self { inner: Rc::new((a, b)), _t: PhantomData,