diff --git a/apps/Docs.hs b/apps/Docs.hs
--- a/apps/Docs.hs
+++ b/apps/Docs.hs
@@ -41,7 +41,7 @@
       H.hr
       H.table $ do
         H.tr ! A.class_ "hrow" $ do
-          H.th "Server ID"
+          H.th "Server Type ID"
           H.th "Name"
           H.th "Architecture"
           H.th "Cores"
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,6 @@
+## 0.4.0.1
+* Update links in documentation.
+
 ## 0.4.0.0
 * Fix `getServerTypes`. It wasn't returning them all.
   Unfortunately, the type signature had to change.
diff --git a/hetzner.cabal b/hetzner.cabal
--- a/hetzner.cabal
+++ b/hetzner.cabal
@@ -2,12 +2,13 @@
 category: Cloud
 synopsis: Hetzner Cloud and DNS library.
 description: Hetzner Cloud and DNS library. Check the readme and documentation for more details.
-version: 0.4.0.0
+version: 0.4.0.1
 cabal-version: 1.18
 build-type: Simple
 author: Daniel Casanueva (daniel.casanueva `at` proton.me)
 maintainer: Daniel Casanueva (daniel.casanueva `at` proton.me)
-bug-reports: https://gitlab.com/daniel-casanueva/hetzner/-/issues
+homepage: https://gitlab.com/daniel-casanueva/haskell/hetzner
+bug-reports: https://gitlab.com/daniel-casanueva/haskell/hetzner/-/issues
 license: MIT
 license-file: license
 extra-doc-files: readme.md, changelog.md
diff --git a/readme.md b/readme.md
--- a/readme.md
+++ b/readme.md
@@ -1,11 +1,5 @@
 # Hetzner Haskell Library
 
-## Distribution
-
-[![Hackage](https://img.shields.io/hackage/v/hetzner?style=for-the-badge)](https://hackage.haskell.org/package/hetzner)
-[![Stackage LTS](http://stackage.org/package/hetzner/badge/lts)](http://stackage.org/lts/package/hetzner)
-[![Stackage Nightly](http://stackage.org/package/hetzner/badge/nightly)](http://stackage.org/nightly/package/hetzner)
-
 ## Description
 
 Client interface for the [Hetzner Cloud API](https://docs.hetzner.cloud)
@@ -22,4 +16,4 @@
 ## Documentation
 
 Access documentation from the main (potentially unreleased) branch
-[here](https://daniel-casanueva.gitlab.io/hetzner/doc).
+[here](https://daniel-casanueva.gitlab.io/haskell/hetzner/doc).
diff --git a/src/Hetzner/Cloud.hs b/src/Hetzner/Cloud.hs
--- a/src/Hetzner/Cloud.hs
+++ b/src/Hetzner/Cloud.hs
@@ -1514,7 +1514,7 @@
 -- | Get all server types.
 --
 --   A regularly updated list of server types can be browsed
---   [here](https://daniel-casanueva.gitlab.io/hetzner/server-types).
+--   [here](https://daniel-casanueva.gitlab.io/haskell/hetzner/server-types).
 getServerTypes :: Token -> Maybe Int -> IO (WithMeta "server_types" [ServerType])
 getServerTypes = cloudQuery "GET" "/server_types" noBody
 
