diff --git a/hsqml-datamodel.cabal b/hsqml-datamodel.cabal
--- a/hsqml-datamodel.cabal
+++ b/hsqml-datamodel.cabal
@@ -1,5 +1,5 @@
 name:                hsqml-datamodel
-version:             0.0.0.1
+version:             0.1.0.0
 synopsis:            HsQML (Qt5) data model.
 description:         HsQML (Qt5) data model. Use any collection (actually, any (Int -> IO a) action) of single constructor data types as a model for use with QML views.
 license:             BSD3
@@ -42,9 +42,9 @@
                         Graphics.QML.DataModel.Tutorial
                         Graphics.QML.DataModel
   build-depends:       base >=4.8 && <4.9
-                     , hsqml
-                     , text
-                     , template-haskell
+                     , hsqml >= 0.3.3.0 && < 0.4
+                     , text >= 1.0 && < 1.3
+                     , template-haskell >= 2.10 && < 2.11
   hs-source-dirs:      src
   default-language:    Haskell2010
   include-dirs: cbits
diff --git a/src/Graphics/QML/DataModel/Internal/Generic/Get.hs b/src/Graphics/QML/DataModel/Internal/Generic/Get.hs
--- a/src/Graphics/QML/DataModel/Internal/Generic/Get.hs
+++ b/src/Graphics/QML/DataModel/Internal/Generic/Get.hs
@@ -81,7 +81,7 @@
      where b :: Int
            b = if v then 1 else 0 
 
--- |Indegers are marshalled through QT strings rather than ints.
+-- |Integers are marshalled through QT strings rather than ints.
 instance QtField Integer where
   qtField = newQtString . show
 
