diff --git a/Clipboard.cabal b/Clipboard.cabal
--- a/Clipboard.cabal
+++ b/Clipboard.cabal
@@ -1,55 +1,51 @@
-Name:         Clipboard
-Version:      2.3.2.0
-Author:       Sævar Berg (Windows), Matthew Bekkema (X11), Daniel Díaz (Maintainer)
-Homepage:     http://haskell.org/haskellwiki/Clipboard
-License:      BSD3
-License-file: license
-Maintainer:   dhelta.diaz `at` gmail.com
-Category:     System
-Stability:    Stable
-Synopsis:     System clipboard interface.
-Bug-reports:  https://github.com/Daniel-Diaz/Clipboard/issues
-Description:    
-  /Clipboard/ is a library for easily interfacing with the system clipboard with additional unicode support.
-  Currently, only in a Windows or GNU/Linux (X11) system.
-  .
-  For example, if you type:
-  .
-  > $ setClipboardString "Hello, World!"
-  .
-  Then you have @\"Hello, World!\"@ available to be pasted wherever you want.
-  .
-  Now, if you type:
-  .
-  > $ modifyClipboardString reverse
-  .
-  You will have @\"!dlroW ,olleH\"@ in your clipboard. So:
-  .
-  > $ getClipboardString
-  > "!dlroW ,olleH"
-  .
-  The X11 version depends on the @X11@ package, so you will need the X11 development library
-  available on your system at compile time. You can install it by @sudo apt-get install libxrandr-dev@
-  (or the equivalent on your system).
-Build-type: Simple
-Cabal-version:  >= 1.6
-Extra-source-files: README.md
-
-Source-repository head
- type: git
- location: git://github.com/Daniel-Diaz/Clipboard.git
-
-Library
-  Exposed-modules: System.Clipboard
-  Extensions: CPP
-  if os(windows)
-    Build-depends:  base == 4.*
-                  , Win32 >= 2.2.0.0 && < 2.4
-    Other-modules:  System.Clipboard.Windows
-  else
-    Build-depends:  base == 4.*
-                  , X11 >= 1.6
-                  , utf8-string
-                  , unix
-                  , directory
-    Other-modules:  System.Clipboard.X11
+Name:         Clipboard
+Version:      2.3.2.2
+Author:       Sævar Berg (Windows), Matthew Bekkema (X11), Daniel Casanueva (Maintainer)
+License:      BSD3
+License-file: license
+Maintainer:   Daniel Casanueva (coding `at` danielcasanueva.eu)
+Category:     System
+Stability:    Stable
+Synopsis:     System clipboard interface.
+Bug-reports:  https://codeberg.org/daniel-casanueva/Clipboard/issues
+Description:    
+  /Clipboard/ is a library for easily interfacing with the system clipboard with additional unicode support.
+  Currently, only in a Windows or GNU/Linux (X11) system.
+  .
+  For example, if you type:
+  .
+  > $ setClipboardString "Hello, World!"
+  .
+  Then you have @\"Hello, World!\"@ available to be pasted wherever you want.
+  .
+  Now, if you type:
+  .
+  > $ modifyClipboardString reverse
+  .
+  You will have @\"!dlroW ,olleH\"@ in your clipboard. So:
+  .
+  > $ getClipboardString
+  > "!dlroW ,olleH"
+  .
+  The X11 version depends on the @X11@ package, so you will need the X11 development library
+  available on your system at compile time. You can install it with @apt install libxrandr-dev@
+  (or the equivalent on your system).
+Build-type: Simple
+Cabal-version: 1.18
+Extra-doc-files: README.md, changelog.md
+
+Library
+  Exposed-modules: System.Clipboard
+  Default-Language: Haskell2010
+  Default-extensions: CPP
+  if os(windows)
+    Build-depends:  base == 4.*
+                  , Win32 >= 2.2.0.0 && < 2.4
+    Other-modules:  System.Clipboard.Windows
+  else
+    Build-depends:  base == 4.*
+                  , X11 >= 1.6
+                  , utf8-string
+                  , unix
+                  , directory
+    Other-modules:  System.Clipboard.X11
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,5 @@
+## 2.3.2.2
+* Metadata update.
+
+## 2.3.2.1
+* Metadata update.
