diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,2 @@
+- 0.6.1.0
+    * Remove invalid value attr from file element
diff --git a/digestive-functors-blaze.cabal b/digestive-functors-blaze.cabal
--- a/digestive-functors-blaze.cabal
+++ b/digestive-functors-blaze.cabal
@@ -1,5 +1,5 @@
 Name:          digestive-functors-blaze
-Version:       0.6.0.6
+Version:       0.6.1.0
 Synopsis:      Blaze frontend for the digestive-functors library
 Description:   Blaze frontend for the digestive-functors library
 Homepage:      http://github.com/jaspervdj/digestive-functors
@@ -10,6 +10,9 @@
 Category:      Web
 Build-type:    Simple
 Cabal-version: >= 1.6
+
+Extra-source-files:
+  CHANGELOG
 
 Library
   Hs-source-dirs:  src
diff --git a/src/Text/Digestive/Blaze/Html5.hs b/src/Text/Digestive/Blaze/Html5.hs
--- a/src/Text/Digestive/Blaze/Html5.hs
+++ b/src/Text/Digestive/Blaze/Html5.hs
@@ -140,10 +140,8 @@
     ! A.type_ "file"
     ! A.id    (H.toValue ref')
     ! A.name  (H.toValue ref')
-    ! A.value (H.toValue value)
   where
-    ref'  = absoluteRef ref view
-    value = fromMaybe "" $ fieldInputFile ref view
+    ref' = absoluteRef ref view
 
 
 --------------------------------------------------------------------------------
