diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for streamly-fsnotify
 
+## 1.1.1.0 -- 2020-05-27
+
+* Export additional `EventPredicate`s.
+
 ## 1.1.0.0 -- 2020-05-27
 
 * Use abstract newtype for `StopWatching`.
diff --git a/src/Streamly/FSNotify.hs b/src/Streamly/FSNotify.hs
--- a/src/Streamly/FSNotify.hs
+++ b/src/Streamly/FSNotify.hs
@@ -45,7 +45,7 @@
     eventPath, eventTime, eventFSEntry,
     -- * Events and predicates
     EventPredicate(..),
-    isDirectory, hasExtension, isCreation, isModification, isDeletion, isBasic, invert, conj, disj,
+    everything, nothing, isDirectory, hasExtension, isCreation, isModification, isDeletion, isBasic, invert, conj, disj,
     -- * Watchers
     watchDirectory, watchDirectoryWith, watchTree, watchTreeWith,
 ) where
diff --git a/streamly-fsnotify.cabal b/streamly-fsnotify.cabal
--- a/streamly-fsnotify.cabal
+++ b/streamly-fsnotify.cabal
@@ -1,6 +1,6 @@
 cabal-version:       3.0
 name:                streamly-fsnotify
-version:             1.1.0.0
+version:             1.1.1.0
 synopsis:            Folder watching as a Streamly stream.
 description:
     Provides Streamly streams for both single-level and recursive folder watching.
