diff --git a/src/Temporal/Music/Western/P12.hs b/src/Temporal/Music/Western/P12.hs
--- a/src/Temporal/Music/Western/P12.hs
+++ b/src/Temporal/Music/Western/P12.hs
@@ -27,6 +27,8 @@
 )
 where
 
+import Data.Default
+
 import Temporal.Music(Score, temp, note, Step)
 import Temporal.Music.Scales(eqt, pyth, hind, hindFs, hindGb)
 
@@ -34,12 +36,12 @@
 
 -- | Constructs 'Score' with one note. 'Scale' is set to equal
 -- tempered scale (from 'c1').
-tone :: Step -> Score (Note a)
+tone :: Default a => Step -> Score (Note a)
 tone = note 
 
 c, d, e, f, g, a, b, 
     cs, ds, es, fs, gs, as, bs,
-    cf, df, ef, ff, gf, af, bf :: Score (Note a)
+    cf, df, ef, ff, gf, af, bf :: Default a => Score (Note a)
 
 c    = tone 0
 cs   = tone 1
diff --git a/src/Temporal/Music/Western/P13.hs b/src/Temporal/Music/Western/P13.hs
--- a/src/Temporal/Music/Western/P13.hs
+++ b/src/Temporal/Music/Western/P13.hs
@@ -12,17 +12,19 @@
 )    
 where
 
+import Data.Default
+
 import Temporal.Music(Score, temp, setScale, c1, note)
 import Temporal.Music.Western
 import Temporal.Music.Scales(eqBP, justBP)
 
 c, cs, cf, d, ds, df, e, es, ef,
     f, fs, ff, g, gs, gf, h, hs, hf, 
-    j, js, jf, a, as, af, b, bs, bf :: Score (Note a)
+    j, js, jf, a, as, af, b, bs, bf :: Default a => Score (Note a)
 
 -- | Constructs 'Score' with one note. 'Scale' is set to equal
 -- tempered Bohlen-Pierce scale (from 'c1').
-tone :: Step -> Score (Note a)
+tone :: Default a => Step -> Score (Note a)
 tone = setScale (eqBP c1) . note 
 
 c  = tone 0
diff --git a/temporal-music-notation-western.cabal b/temporal-music-notation-western.cabal
--- a/temporal-music-notation-western.cabal
+++ b/temporal-music-notation-western.cabal
@@ -1,6 +1,6 @@
 Name:          temporal-music-notation-western
-Version:       0.2
-Cabal-Version: >= 1.2
+Version:       0.2.2
+Cabal-Version: >= 1.6
 License:       BSD3
 License-file:  LICENSE
 Author:	       Anton Kholomiov
@@ -13,11 +13,17 @@
 Tested-With:   GHC==6.12.1
 Build-Type:    Simple
 
+Homepage:        https://github.com/anton-k/temporal-music-notation-western
+Bug-Reports:     https://github.com/anton-k/temporal-music-notation-western/issues
 
+Source-repository head
+    Type: git
+    Location: https://github.com/anton-k/temporal-music-notation-western
+
 Library
   Build-Depends:
-        base >= 4, base < 5,
-        temporal-music-notation >= 0.2
+        base >= 4, base < 5, data-default >= 0.3,
+        temporal-music-notation >= 0.2.2
   Hs-Source-Dirs:      src/
   Exposed-Modules:
         Temporal.Music.Western
