diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,14 @@
 
 ## [Unreleased]
 
+## [1.4.0] - 2025-05-19
+
+### Added
+- Support GHC-9.12
+
+### Removed
+- Support GHC-9.0, GHC-9.2
+
 ## [1.3.1] - 2024-11-24
 
 ### Added
@@ -27,7 +35,8 @@
 ### Added
 - First version of webgear-swagger-ui
 
-[Unreleased]: https://github.com/haskell-webgear/webgear/compare/v1.3.1...HEAD
+[Unreleased]: https://github.com/haskell-webgear/webgear/compare/v1.4.0...HEAD
+[1.4.0]: https://github.com/haskell-webgear/webgear/releases/tag/v1.4.0
 [1.3.1]: https://github.com/haskell-webgear/webgear/releases/tag/v1.3.1
 [1.3.0]: https://github.com/haskell-webgear/webgear/releases/tag/v1.3.0
 [1.2.0]: https://github.com/haskell-webgear/webgear/releases/tag/v1.2.0
diff --git a/webgear-swagger-ui.cabal b/webgear-swagger-ui.cabal
--- a/webgear-swagger-ui.cabal
+++ b/webgear-swagger-ui.cabal
@@ -1,7 +1,7 @@
 cabal-version:       2.4
 
 name:                webgear-swagger-ui
-version:             1.3.1
+version:             1.4.0
 synopsis:            Host swagger UI based on WebGear API specifications.
 description:
     WebGear is a library to for building composable, type-safe HTTP API servers.
@@ -11,7 +11,7 @@
 bug-reports:         https://github.com/haskell-webgear/webgear/issues
 author:              Raghu Kaippully
 maintainer:          rkaippully@gmail.com
-copyright:           2023-2024 Raghu Kaippully
+copyright:           2023-2025 Raghu Kaippully
 license:             MPL-2.0
 license-file:        LICENSE
 category:            Web
@@ -49,27 +49,27 @@
                     , WebGear.Swagger.UI.Embedded
   hs-source-dirs:     src
   default-language:   Haskell2010
-  build-depends:      base >=4.13.0.0 && <4.21
-                    , bytestring >=0.10.10.1 && <0.13
+  build-depends:      base >=4.17.0.0 && <4.22
+                    , bytestring >=0.11.0.0 && <0.13
                     , file-embed ==0.0.*
                     , http-types ==0.12.*
-                    , text >=1.2.0.0 && <2.2
+                    , text >=2.0 && <2.2
                     , wai-app-static ==3.1.*
-                    , webgear-core ^>=1.3.1
+                    , webgear-core ^>=1.4.0
   default-extensions: Arrows
                       DataKinds
                       FlexibleContexts
                       OverloadedStrings
                       TypeApplications
   ghc-options:        -Wall
-                      -Wno-unticked-promoted-constructors
                       -Wcompat
                       -Widentities
                       -Wincomplete-record-updates
                       -Wincomplete-uni-patterns
+                      -Wmissing-deriving-strategies
                       -Wmissing-fields
                       -Wmissing-home-modules
-                      -Wmissing-deriving-strategies
+                      -Wno-unticked-promoted-constructors
                       -Wpartial-fields
                       -Wredundant-constraints
                       -Wunused-packages
