diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,11 @@
 # Changelog for rollbar-wai
 
+All notable changes to this project will be documented in this file.
+
+## [1.1.0] - 2024-05-28
+
+### Changed
+- Added support for GHC 9.4
+- Changed `text` dependency upper bound: we now support `text-2.0.X.X`.
+
 ## Unreleased changes
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2020 Stack Builders Inc.
+Copyright 2020-present Stack Builders Inc.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the "Software"), to deal in
diff --git a/rollbar-wai.cabal b/rollbar-wai.cabal
--- a/rollbar-wai.cabal
+++ b/rollbar-wai.cabal
@@ -1,13 +1,13 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.7.
+-- This file has been generated from package.yaml by hpack version 0.36.0.
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: ac188cecfff7139de33d798a8f28d9b0f071045ece47e95a25890f89a77b00c4
+-- hash: ec084557ab6ac4fa78cda03d7566582d95296b617cdf5f55ec5d6a8ab9bad8c8
 
 name:           rollbar-wai
-version:        1.0.0
+version:        1.1.0
 synopsis:       Provides error reporting capabilities to WAI based applications through Rollbar API.
 
 description:    Please see the README on GitHub at
@@ -16,12 +16,12 @@
 homepage:       https://github.com/stackbuilders/rollbar-haskell#readme
 bug-reports:    https://github.com/stackbuilders/rollbar-haskell/issues
 author:         Stack Builders Inc.
-maintainer:     Sebastián Estrella <sestrella@stackbuilders.com>
-copyright:      2020 Stack Builders Inc.
+maintainer:     David Mazarro <dmunuera@stackbuilders.com>
+copyright:      2020-present Stack Builders Inc.
 license:        MIT
 license-file:   LICENSE
 tested-with:
-    GHC ==8.8.4, GHC ==8.10.2
+    GHC ==8.8.4, GHC ==8.10.7, GHC ==9.4.7
 build-type:     Simple
 extra-source-files:
     README.md
@@ -51,7 +51,7 @@
     , case-insensitive >=1.2 && <2
     , http-types >=0.12 && <1
     , rollbar-client >=1.0 && <2
-    , text >=1.2 && <2
+    , text >=1.2 && <2.1
     , unordered-containers >=0.2 && <1
     , wai >=3.2 && <4
     , wai-extra >=3.0 && <4
@@ -70,11 +70,11 @@
     , rollbar-wai
     , wai
     , warp
+  default-language: Haskell2010
   if flag(example)
     buildable: True
   else
     buildable: False
-  default-language: Haskell2010
 
 test-suite spec
   type: exitcode-stdio-1.0
diff --git a/src/Rollbar/Wai.hs b/src/Rollbar/Wai.hs
--- a/src/Rollbar/Wai.hs
+++ b/src/Rollbar/Wai.hs
@@ -2,7 +2,7 @@
 
 -- |
 -- Module: Rollbar.Wai
--- Copyright: (c) 2020 Stack Builders Inc.
+-- Copyright: (c) 2020-present Stack Builders Inc.
 -- License: MIT
 -- Maintainer: Sebastián Estrella <sestrella@stackbuilders.com>
 --
