diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright © 2015-2016 Arthur S. Fayzrakhmanov <https://github.com/geraldus>
+Copyright © 2015-2017 Arthur S. Fayzrakhmanov <https://github.com/geraldus>
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the "Software"), to deal in
diff --git a/src/Yesod/Form/Summernote.hs b/src/Yesod/Form/Summernote.hs
--- a/src/Yesod/Form/Summernote.hs
+++ b/src/Yesod/Form/Summernote.hs
@@ -8,8 +8,8 @@
 -- @
 -- summerForm :: Form HtmlComment
 -- summerForm = renderBootstrap3 BootstrapBasicForm $ HtmlComment
---   \<$\> areq (snHtmlFieldCustomized "{toolbar:false}") "Title" Nothing
---   \<*\> areq snHtmlField "Comment" Nothing
+--   \<$\> areq (snHtmlFieldCustomized "{toolbar:false}") \"Title\" Nothing
+--   \<*\> areq snHtmlField \"Comment\" Nothing
 -- @
 
 module Yesod.Form.Summernote
@@ -67,8 +67,9 @@
 -- @
 -- snHtmlFieldCustomized "{ height: 150, codemirror: { theme:'monokai' } }"
 -- @
-snHtmlFieldCustomized :: YesodSummernote site
-                      => String -> Field (HandlerT site IO) Html
+snHtmlFieldCustomized :: (YesodSummernote site, MonadHandler m)
+                      => String
+                      -> Field (HandlerT site m) Html
 snHtmlFieldCustomized cfg = Field
     { fieldParse =
         \e _ -> return $
@@ -98,7 +99,8 @@
     showVal = either id (pack . renderHtml)
 
 -- | Summernote editor field with default settings.
-snHtmlField :: YesodSummernote site => Field (HandlerT site IO) Html
+snHtmlField :: (YesodSummernote site, MonadHandler m)
+            => Field (HandlerT site m) Html
 snHtmlField = snHtmlFieldCustomized ""
 
 
diff --git a/yesod-form-richtext.cabal b/yesod-form-richtext.cabal
--- a/yesod-form-richtext.cabal
+++ b/yesod-form-richtext.cabal
@@ -1,5 +1,5 @@
 name:                yesod-form-richtext
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Various rich-text WYSIWYG editors for Yesod forms.
 description:         Please see README.md
 homepage:            http://github.com/geraldus/yesod-form-richtext#readme
@@ -7,8 +7,8 @@
 license-file:        LICENSE
 author:              Arthur S. Fayzrakhmanov
 maintainer:          heraldhoi@gmail.com
-copyright:           2016 Arthur S. Fayzrakhmanov
-category:            Web
+copyright:           2017 Arthur S. Fayzrakhmanov
+category:            Web, Yesod
 build-type:          Simple
 cabal-version:       >=1.10
 
