diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,13 @@
 # Revision history for front
 
+## 0.0.0.7 -- 2020-04-07
+
+* Add new strategy for only client session.
+
+## 0.0.0.6 -- 2020-03-25
+
+* Make client static and independent from server types.
+
 ## 0.0.0.5 -- 2020-03-17
 
 * Remove indentation from output html.
diff --git a/front.cabal b/front.cabal
--- a/front.cabal
+++ b/front.cabal
@@ -2,7 +2,7 @@
 --  see http://haskell.org/cabal/users-guide/
 
 name:                front
-version:             0.0.0.6
+version:             0.0.0.7
 synopsis:            A reactive frontend web framework
 description:         A reactive frontend web framework. See haskell-front.org for more details.
 homepage:            haskell-front.org
diff --git a/shared/Bridge.hs b/shared/Bridge.hs
--- a/shared/Bridge.hs
+++ b/shared/Bridge.hs
@@ -69,7 +69,7 @@
   deriving (Data, Typeable)
 
 data ExecuteStrategy =
-  ExecuteAll | ExecuteExcept
+  ExecuteAll | ExecuteExcept | ExecuteOnly
   deriving (Data, Typeable, Eq)
 
 data ClientTask a = ClientTask
