diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2014, Alejandro Cabrera
+Copyright (c) 2014, Allele Dev
 
 All rights reserved.
 
@@ -13,7 +13,7 @@
       disclaimer in the documentation and/or other materials provided
       with the distribution.
 
-    * Neither the name of Alejandro Cabrera nor the names of other
+    * Neither the name of Allele Dev 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/brainfuck-tut.cabal b/brainfuck-tut.cabal
--- a/brainfuck-tut.cabal
+++ b/brainfuck-tut.cabal
@@ -1,13 +1,13 @@
 name:                brainfuck-tut
-version:             0.7.0.1
+version:             0.7.0.2
 synopsis:            A simple BF interpreter.
 license:             BSD3
 license-file:        LICENSE
 author:              Allele Dev
 maintainer:          allele.dev@gmail.com
 copyright:           (c) 2016 Allele Dev
-homepage:            https://gitlab.com/cpp.cabrera/brainfuck-tut
-bug-reports:         https://gitlab.com/cpp.cabrera/brainfuck-tut/issues
+homepage:            https://gitlab.com/queertypes/brainfuck-tut
+bug-reports:         https://gitlab.com/queertypes/brainfuck-tut/issues
 category:            Language
 build-type:          Simple
 cabal-version:       >=1.18
@@ -17,7 +17,7 @@
 
 source-repository head
     type: git
-    location: git clone https://gitlab.com/cpp.cabrera/brainfuck-tut.git
+    location: git clone https://gitlab.com/queertypes/brainfuck-tut.git
 
 library
   exposed-modules:
@@ -33,5 +33,9 @@
   main-is:             Language/Brainfuck/Interpreter.hs
   build-depends:       base >=4.7 && <5, array, brainfuck-tut
   hs-source-dirs:      src
+  other-modules:
+    Language.Brainfuck.Eval,
+    Language.Brainfuck.Parse,
+    Language.Brainfuck.Types
   ghc-options:         -Wall -O2
   default-language:    Haskell2010
diff --git a/src/Language/Brainfuck/Eval.hs b/src/Language/Brainfuck/Eval.hs
--- a/src/Language/Brainfuck/Eval.hs
+++ b/src/Language/Brainfuck/Eval.hs
@@ -1,9 +1,9 @@
 {-|
 Module      : Language.Brainfuck.Eval
 Description : Evaluator for the BF language
-Copyright   : (c) Alejandro Cabrera, 2014
+Copyright   : (c) Allele Dev, 2014
 License     : BSD-3
-Maintainer  : cpp.cabrera@gmail.com
+Maintainer  : allele.dev@gmail.com
 Stability   : experimental
 Portability : POSIX
 -}
diff --git a/src/Language/Brainfuck/Interpreter.hs b/src/Language/Brainfuck/Interpreter.hs
--- a/src/Language/Brainfuck/Interpreter.hs
+++ b/src/Language/Brainfuck/Interpreter.hs
@@ -1,9 +1,9 @@
 {-|
 Module      : Language.Brainfuck.Interpreter
 Description : Simple executable to evaluate BF expressions
-Copyright   : (c) Alejandro Cabrera, 2014
+Copyright   : (c) Allele Dev, 2014
 License     : BSD-3
-Maintainer  : cpp.cabrera@gmail.com
+Maintainer  : allele.dev@gmail.com
 Stability   : experimental
 Portability : POSIX
 
diff --git a/src/Language/Brainfuck/Parse.hs b/src/Language/Brainfuck/Parse.hs
--- a/src/Language/Brainfuck/Parse.hs
+++ b/src/Language/Brainfuck/Parse.hs
@@ -1,9 +1,9 @@
 {-|
 Module      : Language.Brainfuck.Parse
 Description : Parser for the BF language
-Copyright   : (c) Alejandro Cabrera, 2014
+Copyright   : (c) Allele Dev, 2014
 License     : BSD-3
-Maintainer  : cpp.cabrera@gmail.com
+Maintainer  : allele.dev@gmail.com
 Stability   : experimental
 Portability : POSIX
 -}
diff --git a/src/Language/Brainfuck/Types.hs b/src/Language/Brainfuck/Types.hs
--- a/src/Language/Brainfuck/Types.hs
+++ b/src/Language/Brainfuck/Types.hs
@@ -1,9 +1,9 @@
 {-|
 Module      : Language.Brainfuck.Types
 Description : Types used in the implementation of the BF language
-Copyright   : (c) Alejandro Cabrera, 2014
+Copyright   : (c) Allele Dev, 2014
 License     : BSD-3
-Maintainer  : cpp.cabrera@gmail.com
+Maintainer  : allele.dev@gmail.com
 Stability   : experimental
 Portability : POSIX
 -}
