diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
 
 `hslua-module-text` uses [PVP Versioning][].
 
+## hslua-module-text-1.1.0
+
+Released 2023-03-13.
+
+-   Update to hslua-2.3; this includes the addition of type
+    initializers to the module and type specifiers to the fields.
+
 ## hslua-module-text-1.0.3.1
 
 Released 2023-01-06.
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2017-2022 Albert Krewinkel
+Copyright (c) 2017-2023 Albert Krewinkel
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
diff --git a/hslua-module-text.cabal b/hslua-module-text.cabal
--- a/hslua-module-text.cabal
+++ b/hslua-module-text.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                hslua-module-text
-version:             1.0.3.1
+version:             1.1.0
 synopsis:            Lua module for text
 description:         UTF-8 aware subset of Lua's `string` module.
                      .
@@ -12,7 +12,7 @@
 license:             MIT
 license-file:        LICENSE
 author:              Albert Krewinkel
-maintainer:          albert+hslua@zeitkraut.de
+maintainer:          tarleb@hslua.org
 copyright:           © 2017–2023 Albert Krewinkel
 category:            Foreign
 extra-source-files:  CHANGELOG.md
@@ -32,9 +32,9 @@
 
 common common-options
   default-language:    Haskell2010
-  build-depends:       base                 >= 4.8    && < 5
-                     , hslua-core           >= 2.1    && < 2.4
-                     , hslua-packaging      >= 2.1    && < 2.3
+  build-depends:       base                 >= 4.11   && < 5
+                     , hslua-core           >= 2.3    && < 2.4
+                     , hslua-packaging      >= 2.3    && < 2.4
                      , text                 >= 1.2    && < 2.1
   ghc-options:         -Wall
                        -Wincomplete-record-updates
@@ -53,7 +53,7 @@
   import:              common-options
   exposed-modules:     HsLua.Module.Text
   hs-source-dirs:      src
-  build-depends:       hslua-marshalling    >= 2.1    && < 2.3
+  build-depends:       hslua-marshalling    >= 2.1    && < 2.4
   other-extensions:    OverloadedStrings
 
 test-suite test-hslua-module-text
diff --git a/src/HsLua/Module/Text.hs b/src/HsLua/Module/Text.hs
--- a/src/HsLua/Module/Text.hs
+++ b/src/HsLua/Module/Text.hs
@@ -5,7 +5,7 @@
 Module      : HsLua.Module.Text
 Copyright   : © 2017–2023 Albert Krewinkel
 License     : MIT
-Maintainer  : Albert Krewinkel <tarleb+hslua@zeitkraut.de>
+Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 Stability   : alpha
 Portability : GHC only
 
@@ -56,6 +56,7 @@
     ]
   , moduleDescription =
       "UTF-8 aware text manipulation functions, implemented in Haskell."
+  , moduleTypeInitializers = []
   }
 
 --
diff --git a/test/test-hslua-module-text.hs b/test/test-hslua-module-text.hs
--- a/test/test-hslua-module-text.hs
+++ b/test/test-hslua-module-text.hs
@@ -2,9 +2,9 @@
 {-# LANGUAGE TypeApplications  #-}
 {-|
 Module      : Main
-Copyright   : © 2017-2022 Albert Krewinkel
+Copyright   : © 2017-2023 Albert Krewinkel
 License     : MIT
-Maintainer  : Albert Krewinkel <albert+hslua@zeitkraut.de>
+Maintainer  : Albert Krewinkel <tarleb@hslua.org>
 Stability   : stable
 Portability : Requires language extensions ForeignFunctionInterface,
               OverloadedStrings.
