diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@
 
 ## Example
 
-```
+```haskell
 import Test.Tasty.Bdd
 
 tests :: TestTree
diff --git a/src/Test/Tasty/Bdd.hs b/src/Test/Tasty/Bdd.hs
--- a/src/Test/Tasty/Bdd.hs
+++ b/src/Test/Tasty/Bdd.hs
@@ -1,5 +1,3 @@
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
 {-# LANGUAGE DataKinds #-}
 {-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE FlexibleInstances #-}
@@ -10,7 +8,7 @@
 
 -- |
 -- Module    :  Test.Tasty.Bdd
--- Copyright :  (c) Paolo Veronelli, Pavlo Kerestey 2017
+-- Copyright :  (c) Paolo Veronelli, Pavlo Kerestey 2017-2020
 -- License   :  All rights reserved
 -- Maintainer:  paolo.veronelli@gmail.com
 -- Stability :  experimental
@@ -200,6 +198,7 @@
 onEach op (WithResource spec rf) = WithResource spec $ onEach op . rf
 onEach op (AskOptions rf) = AskOptions $ onEach op . rf
 onEach op (PlusTestOptions g t) = PlusTestOptions g $ onEach op t
+onEach op (After x y t) = After x y $ onEach op t
 
 -- | recursively append an action
 afterEach :: IO () -> TestTree -> TestTree
diff --git a/tasty-bdd.cabal b/tasty-bdd.cabal
--- a/tasty-bdd.cabal
+++ b/tasty-bdd.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 3d09fd3039a4f97cb691e80b9e53f939dca22e70237df9634d3c473be516a0de
+-- hash: 2092064cb96d2bfbdd0184d0d9652a09a67bfeb44af393b1da2095d85d4e84a8
 
 name:           tasty-bdd
-version:        0.1.0.0
+version:        0.1.0.1
 synopsis:       BDD tests language and tasty provider
 description:    https://gitlab.com/devs.global.de/tasty-bdd/-/blob/master/README.md
 category:       Test
