diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2013, Sam T.
+Copyright (c) 2013, Sam Truzjan
 
 All rights reserved.
 
@@ -13,7 +13,7 @@
       disclaimer in the documentation and/or other materials provided
       with the distribution.
 
-    * Neither the name of Sam T. nor the names of other
+    * Neither the name of Sam Truzjan nor the names of other
       contributors may be used to endorse or promote products derived
       from this software without specific prior written permission.
 
diff --git a/intset.cabal b/intset.cabal
--- a/intset.cabal
+++ b/intset.cabal
@@ -1,16 +1,16 @@
 name:                  intset
-version:               0.1.0.1
+version:               0.1.0.2
 category:              Data
 license:               BSD3
 license-file:          LICENSE
-author:                Sam T.
-maintainer:            Sam T. <pxqr.sta@gmail.com>
-copyright:             (c) 2013, Sam T.
+author:                Sam Truzjan
+maintainer:            Sam Truzjan <pxqr.sta@gmail.com>
+copyright:             (c) 2013, Sam Truzjan
 homepage:              https://github.com/pxqr/intset
 bug-reports:           https://github.com/pxqr/intset/issues
 build-type:            Simple
 cabal-version:         >=1.8
-synopsis:              Pure, fast and memory efficient integer sets.
+synopsis:              Pure, mergeable, succinct Int sets.
 description:
 
    This library provides persistent, time and space efficient integer
@@ -18,10 +18,6 @@
    suffixes compaction. In randomized settings this structure expected
    to be as fast as Data.IntSet from containers, but if a sets is
    likely to have long continuous intervals it should be much faster.
-   .
-   [/Release notes/]
-   .
-     * /0.1.0.0:/ Initial version.
 
 
 extra-source-files:    README.md
@@ -31,6 +27,12 @@
 source-repository head
   type:                git
   location:            git://github.com/pxqr/intset.git
+
+source-repository this
+  type:                git
+  location:            git://github.com/pxqr/intset.git
+  branch:              master
+  tag:                 v0.1.0.2
 
 
 flag testing
diff --git a/src/Data/IntervalSet.hs b/src/Data/IntervalSet.hs
--- a/src/Data/IntervalSet.hs
+++ b/src/Data/IntervalSet.hs
@@ -1,5 +1,5 @@
 -- |
---   Copyright   :  (c) Sam T. 2013
+--   Copyright   :  (c) Sam Truzjan 2013
 --   License     :  BSD3
 --   Maintainer  :  pxqr.sta@gmail.com
 --   Stability   :  experimental
@@ -32,8 +32,9 @@
 --     single interval).
 --
 --   Note that some operations will take centuries to compute. For
---   exsample @map id universe@ will never end as well as 'filter'
---   applied to 'universe', 'naturals', 'positives' or 'negatives'.
+--   example @map id universe@ will a long time to end as well as
+--   'filter' applied to 'universe', 'naturals', 'positives' or
+--   'negatives'.
 --
 --   Also note that some operations like 'union', 'intersection' and
 --   'difference' have overriden from default fixity, so use these
diff --git a/src/Data/IntervalSet/ByteString.hs b/src/Data/IntervalSet/ByteString.hs
--- a/src/Data/IntervalSet/ByteString.hs
+++ b/src/Data/IntervalSet/ByteString.hs
@@ -1,5 +1,5 @@
 -- |
---   Copyright   :  (c) Sam T. 2013
+--   Copyright   :  (c) Sam Truzjan 2013
 --   License     :  BSD3
 --   Maintainer  :  pxqr.sta@gmail.com
 --   Stability   :  experimental
diff --git a/src/Data/IntervalSet/Internal.hs b/src/Data/IntervalSet/Internal.hs
--- a/src/Data/IntervalSet/Internal.hs
+++ b/src/Data/IntervalSet/Internal.hs
@@ -1,5 +1,5 @@
 -- |
---   Copyright   :  (c) Sam T. 2013
+--   Copyright   :  (c) Sam Truzjan 2013
 --   License     :  BSD3
 --   Maintainer  :  pxqr.sta@gmail.com
 --   Stability   :  experimental
