diff --git a/README.md b/README.md
deleted file mode 100644
--- a/README.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# The *haskintex* program
-
-The *haskintex* program is a tool that reads a LaTeX file and evaluates Haskell expressions contained
-in some specific commands and environments. It allows you to define your own functions, use any GHC Haskell language
-extension and, in brief, anything you can do within Haskell. You can freely add any Haskell code you need, and make
-this code appear *optionally* in the LaTeX output. It is a tiny program, and therefore, easy to understand, use and
-predict.
-
-For more details, read the
-[homepage of the project](http://daniel-diaz.github.io/projects/haskintex).
diff --git a/Setup.hs b/Setup.hs
deleted file mode 100644
--- a/Setup.hs
+++ /dev/null
@@ -1,2 +0,0 @@
-import Distribution.Simple
-main = defaultMain
diff --git a/changelog.md b/changelog.md
new file mode 100644
--- /dev/null
+++ b/changelog.md
@@ -0,0 +1,3 @@
+## 0.8.0.2
+* Metadata update.
+* Allow more recent versions of `text`.
diff --git a/haskintex.cabal b/haskintex.cabal
--- a/haskintex.cabal
+++ b/haskintex.cabal
@@ -1,32 +1,23 @@
 name:                haskintex
-version:             0.8.0.1
+version:             0.8.0.2
 synopsis:            Haskell Evaluation inside of LaTeX code.
 description:
   The /haskintex/ (Haskell in LaTeX) program is a tool that reads a LaTeX file and evaluates Haskell expressions contained
   in some specific commands and environments. It allows you to define your own functions, use any GHC Haskell language
-  extension and, in brief, anything you can do within Haskell.
+  extension and, in summary, anything you can do within Haskell.
   Additionally, it is possible to include expressions of 'LaTeX' type (see /HaTeX/ package) and render them as LaTeX code.
   You can freely add any Haskell code you need, and make this code appear /optionally/ in the LaTeX output. It is a tiny program,
   and therefore, easy to understand, use and predict.
-  .
-  Additions from last version:
-  .
-  * /haskintex/ is now able to detect that is running on a cabal sandbox, and will use the sandbox package
-    db if this is the case. Unless the flag @-nosandbox@ is given, in which case the sandbox will be ignored.
-  .
-  * New flag @-nosandbox@. Ignore sandbox if /haskintex/ runs on one.
-  .
-homepage:            http://daniel-diaz.github.io/projects/haskintex
-bug-reports:         https://github.com/Daniel-Diaz/haskintex/issues
+homepage:            https://daniel-casanueva.gitlab.io/haskell/haskintex
+bug-reports:         https://gitlab.com/daniel-casanueva/haskell/haskintex/-/issues
 license:             BSD3
 license-file:        LICENSE
-author:              Daniel Díaz
-maintainer:          dhelta.diaz@gmail.com
+author:              Daniel Casanueva (daniel.casanueva `at` proton.me)
+maintainer:          Daniel Casanueva (daniel.casanueva `at` proton.me)
 category:            LaTeX
 build-type:          Simple
-extra-source-files:  README.md
-                     -- examples
-                     examples/fact.htex
+extra-doc-files:     readme.md, changelog.md
+extra-source-files:  examples/fact.htex
                      examples/hatex.htex
                      examples/sine.htex
                      examples/io.htex
@@ -34,7 +25,7 @@
                      examples/string.htex
                      examples/threaded.htex
                      examples/memo.htex
-cabal-version:       >=1.10
+cabal-version:       1.18
 
 executable haskintex
   hs-source-dirs: main
@@ -48,7 +39,7 @@
   default-language: Haskell2010
   build-depends: base >= 4.7 && < 5
                , transformers >= 0.3.0.0
-               , text >= 0.11.2.3 && < 2
+               , text >= 0.11.2.3
                , bytestring >= 0.10.4
                , directory >= 1.2.0 && < 1.4
                , filepath >= 1.1.0 && < 1.5
diff --git a/readme.md b/readme.md
new file mode 100644
--- /dev/null
+++ b/readme.md
@@ -0,0 +1,9 @@
+# The *haskintex* program
+
+The *haskintex* program is a tool that reads a LaTeX file and evaluates Haskell expressions contained
+in some specific commands and environments. It allows you to define your own functions, use any GHC Haskell language
+extension and, in brief, anything you can do within Haskell. You can freely add any Haskell code you need, and make
+this code appear *optionally* in the LaTeX output. It is a tiny program, and therefore, easy to understand, use and
+predict.
+
+For more details, read the [homepage of the project](https://daniel-casanueva.gitlab.io/haskell/haskintex).
