diff --git a/radius.cabal b/radius.cabal
--- a/radius.cabal
+++ b/radius.cabal
@@ -1,5 +1,5 @@
 name:                radius
-version:             0.1.0.0
+version:             0.2.0.0
 synopsis:            Remote Authentication Dial In User Service (RADIUS)
 description:         This module provides types and on the wire de/coding of RADIUS packets as per RFC2865
 homepage:            https://github.com/erickg/radius#readme
diff --git a/src/Network/RADIUS/Encoding.hs b/src/Network/RADIUS/Encoding.hs
--- a/src/Network/RADIUS/Encoding.hs
+++ b/src/Network/RADIUS/Encoding.hs
@@ -24,7 +24,6 @@
 import Data.Int                    (Int64)
 import Data.Word                   (Word8, Word16, Word32)
 import Network.RADIUS.Types
-import Debug.Trace
 
 import qualified Data.ByteString.Lazy.Char8 as B
 
@@ -183,7 +182,6 @@
 
     get = do
       code <- getWord8
-      traceM $ "decode attr " ++ show code
       getAttribute code
 
 -- | For internal use
