diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## [0.3.0.1] - 2023-10-12
+
+- Fix broken links to ECMA-48 standard
+
 ## [0.3.0] - 2023-09-24
 
 - Switch the underlying text builder from `text-builder` to `text-builder-linear`. This also affects the API provided by
@@ -10,7 +14,7 @@
 
 ## [0.2.1.1] - 2023-05-11
 
-- [#6](https://github.com/mitchellwrosen/text-ansi/pull/6) Fix Windows linker errors on GHC 9.4.5+
+- [#6](https://github.com/awkward-squad/text-ansi/pull/6) Fix Windows linker errors on GHC 9.4.5+
 
 ## [0.2.1] - 2022-11-05
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-[![GitHub CI](https://github.com/mitchellwrosen/text-ansi/workflows/CI/badge.svg)](https://github.com/mitchellwrosen/text-ansi/actions)
+[![GitHub CI](https://github.com/awkward-squad/text-ansi/workflows/Haskell-CI/badge.svg)](https://github.com/awkward-squad/text-ansi/actions)
 [![Hackage](https://img.shields.io/hackage/v/text-ansi.svg)](https://hackage.haskell.org/package/text-ansi)
 [![Stackage LTS](https://stackage.org/package/text-ansi/badge/lts)](https://www.stackage.org/lts/package/text-ansi)
 [![Stackage Nightly](https://stackage.org/package/text-ansi/badge/nightly)](https://www.stackage.org/nightly/package/text-ansi)
diff --git a/src/String/ANSI.hs b/src/String/ANSI.hs
--- a/src/String/ANSI.hs
+++ b/src/String/ANSI.hs
@@ -61,7 +61,7 @@
 -- $intro
 --
 -- Text styling for ANSI terminals using SGR codes, as defined by the
--- <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>
+-- <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48>
 -- standard.
 --
 -- Supports foreground\/background color, bold\/faint intensity, italic,
diff --git a/src/Text/ANSI.hs b/src/Text/ANSI.hs
--- a/src/Text/ANSI.hs
+++ b/src/Text/ANSI.hs
@@ -61,7 +61,7 @@
 -- $intro
 --
 -- Text styling for ANSI terminals using SGR codes, as defined by the
--- <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>
+-- <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48>
 -- standard.
 --
 -- Supports foreground\/background color, bold\/faint intensity, italic,
diff --git a/src/Text/Builder/ANSI.hs b/src/Text/Builder/ANSI.hs
--- a/src/Text/Builder/ANSI.hs
+++ b/src/Text/Builder/ANSI.hs
@@ -63,7 +63,7 @@
 -- $intro
 --
 -- Text styling for ANSI terminals using SGR codes, as defined by the
--- <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>
+-- <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48>
 -- standard.
 --
 -- Supports foreground\/background color, bold\/faint intensity, italic,
diff --git a/src/Text/Lazy/Builder/ANSI.hs b/src/Text/Lazy/Builder/ANSI.hs
--- a/src/Text/Lazy/Builder/ANSI.hs
+++ b/src/Text/Lazy/Builder/ANSI.hs
@@ -62,7 +62,7 @@
 -- $intro
 --
 -- Text styling for ANSI terminals using SGR codes, as defined by the
--- <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>
+-- <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48>
 -- standard.
 --
 -- Supports foreground\/background color, bold\/faint intensity, italic,
diff --git a/text-ansi.cabal b/text-ansi.cabal
--- a/text-ansi.cabal
+++ b/text-ansi.cabal
@@ -1,12 +1,12 @@
 cabal-version: 2.2
 
 name: text-ansi
-version: 0.3.0
+version: 0.3.0.1
 category: Data
 synopsis: Text styling for ANSI terminals.
 description:
   Text styling for ANSI terminals using SGR codes, as defined by the
-  <https://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf ECMA-48>
+  <https://www.ecma-international.org/publications-and-standards/standards/ecma-48 ECMA-48>
   standard.
   .
   Supports foreground\/background color, bold\/faint intensity, italic,
@@ -15,15 +15,15 @@
   .
   Also features terminal detection, so redirecting styled output to a file will
   automatically strip the ANSI escape sequences.
-author: Mitchell Rosen
-maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>
-homepage: https://github.com/mitchellwrosen/text-ansi
-bug-reports: https://github.com/mitchellwrosen/text-ansi/issues
-copyright: (c) 2018-2023, Mitchell Rosen
+author: Mitchell Rosen, Travis Staton
+maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>, Travis Staton <hello@travisstaton.com>
+homepage: https://github.com/awkward-squad/text-ansi
+bug-reports: https://github.com/awkward-squad/text-ansi/issues
+copyright: (c) 2018-2023 Mitchell Rosen, Travis Staton
 license: BSD-3-Clause
 license-file: LICENSE
 build-type: Simple
-tested-with: GHC == 9.2.8, GHC == 9.4.7, GHC == 9.6.2
+tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1
 
 extra-source-files:
   CHANGELOG.md
@@ -31,11 +31,11 @@
 
 source-repository head
   type: git
-  location: git://github.com/mitchellwrosen/text-ansi.git
+  location: git://github.com/awkward-squad/text-ansi.git
 
 library
   build-depends:
-    base >= 4.16 && < 4.19,
+    base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,
     text >= 1.0 && < 2.2,
     text-builder-linear ^>= 0.1.1,
   default-language:
