diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.1.1 (2025-03-06)
+
+- Added support for GHC 9.8+
+
 ## 0.1.0 (2023-04-12)
 
 - First release
diff --git a/LICENSE.txt b/LICENSE.txt
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,6 +1,6 @@
 The MIT License (MIT)
 
-Copyright (c) 2023 Andrew Kane
+Copyright (c) 2023-2025 Andrew Kane
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/pgvector.cabal b/pgvector.cabal
--- a/pgvector.cabal
+++ b/pgvector.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               pgvector
-version:            0.1.0
+version:            0.1.1
 synopsis:           pgvector support for Haskell
 description:        Adds the vector data type to postgresql-simple
 category:           Database
@@ -19,7 +19,7 @@
 source-repository this
   type:     git
   location: https://github.com/pgvector/pgvector-haskell.git
-  tag:      v0.1.0
+  tag:      v0.1.1
 
 common warnings
     ghc-options: -Wall
@@ -28,9 +28,9 @@
     import:           warnings
     exposed-modules:  Pgvector
     build-depends:
-        base >= 4.6 && < 4.19,
+        base >= 4.6 && < 4.22,
         bytestring >= 0.10 && < 0.12,
-        postgresql-simple >= 0.6 && < 0.7
+        postgresql-simple >= 0.6 && < 0.8
     hs-source-dirs:   src
     default-language: Haskell2010
 
