diff --git a/AUTHORS b/AUTHORS
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,1 +1,5 @@
 Corentin Dupont <corentin.dupontDELAVEGAgmail.com> (remove DELAVEGA to obtain my email)
+
+Contributors:
+Michael Steele
+Julian Arni
diff --git a/Changelog b/Changelog
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,11 @@
+
+V0.7:
+- full FRP engine for managing events
+- dynamic events: event tree is recomputed at each request
+- event is now an instance of Monad, MonadPlus
+- added typeclass "Shortcut" for interruptible events
+- bug fixes, cosmetics
+
 V0.6:
 - added composable events: events have now an Applicative and Alternative interfaces
 - moved the Engine part from Nomyx-Language to Nomyx-Core. Nomyx-Language now contains only the DSL useful for the player.
diff --git a/Nomyx.cabal b/Nomyx.cabal
--- a/Nomyx.cabal
+++ b/Nomyx.cabal
@@ -1,5 +1,5 @@
 name: Nomyx
-version: 0.7.1
+version: 0.7.2
 cabal-version: >=1.6
 build-type: Simple
 license: BSD3
@@ -16,9 +16,9 @@
 extra-source-files: AUTHORS README.md TODO Changelog
  
 executable Nomyx
-    build-depends: Nomyx-Core             == 0.7.1,
-                   Nomyx-Language         == 0.7.1,
-                   Nomyx-Web              == 0.7.1,
+    build-depends: Nomyx-Core             == 0.7.2,
+                   Nomyx-Language         == 0.7.2,
+                   Nomyx-Web              == 0.7.2,
                    base                   >= 4.6 && <5,
                    directory              == 1.2.*,
                    exceptions             == 0.6.*,
