diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,10 @@
+0.1.2.0: 2025-01-13
+	* replace cryptonite (deprecated) with crypton
+
 0.1.1.0: 2023-05-19
 	* fix for text version 2. The fix causes hashes for text values to change. Use the new
           function `largeHashStable` if you want to avoid that. (`largeHashStable` comes
-          with a performance penalty, though.))
+          with a performance penalty, though.)
 
 0.1.0.4: 2017-03-19
         * fixed build on `i686` related to non-fixed size integers
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # LargeHashable
 
-[![Build Status](https://travis-ci.org/factisresearch/large-hashable.svg?branch=master)](https://travis-ci.org/factisresearch/large-hashable)
+[![BuildStatus](https://github.com/factisresearch/large-hashable/actions/workflows/haskell-ci.yml/badge.svg?branch=master)](https://github.com/factisresearch/large-hashable/actions/workflows/haskell-ci.yml/badge.svg?branch=master)
 [![Hackage](https://img.shields.io/hackage/v/large-hashable.svg)](http://hackage.haskell.org/package/large-hashable)
 
 Efficiently hash Haskell values with MD5, SHA256, SHA512 and other
diff --git a/large-hashable.cabal b/large-hashable.cabal
--- a/large-hashable.cabal
+++ b/large-hashable.cabal
@@ -1,5 +1,5 @@
 name:                large-hashable
-version:             0.1.1.0
+version:             0.1.2.0
 synopsis:            Efficiently hash (large) Haskell values
 description:         Please see README.md
 homepage:            https://github.com/factisresearch/large-hashable
@@ -7,7 +7,7 @@
 license-file:        LICENSE
 author:              Stefan Wehr, Lukas Epple
 maintainer:          Stefan Wehr
-copyright:           2015 - 2017 factis research GmbH, 2018 - 2023 medilyse GmbH, 2024 MEQO GmbH
+copyright:           2015 - 2017 factis research GmbH, 2018 - 2023 medilyse GmbH, 2024 - 2025 MEQO GmbH
 category:            Web
 build-type:          Simple
 cabal-version:       2.0
@@ -18,6 +18,10 @@
     default.nix
     stack.yaml
     test/bigfile.txt
+    stack-ghc-9.2.yaml
+    stack-ghc-9.4.yaml
+    stack-ghc-9.6.yaml
+    stack-ghc-9.8.yaml
 
 library
   hs-source-dirs:      src
@@ -35,7 +39,7 @@
                      , bytes
                      , bytestring
                      , containers
-                     , cryptonite
+                     , crypton
                      , memory
                      , scientific
                      , strict
diff --git a/src/Data/LargeHashable.hs b/src/Data/LargeHashable.hs
--- a/src/Data/LargeHashable.hs
+++ b/src/Data/LargeHashable.hs
@@ -2,7 +2,7 @@
 --   for efficiently hashing any Haskell data type using a
 --   hash algorithm like MD5, SHA256 etc.
 --
---   Normal users shoud import this module.
+--   Normal users should import this module.
 module Data.LargeHashable (
    LargeHashable(..)
  , LargeHashable'(..)
diff --git a/stack-ghc-9.2.yaml b/stack-ghc-9.2.yaml
new file mode 100644
--- /dev/null
+++ b/stack-ghc-9.2.yaml
@@ -0,0 +1,10 @@
+resolver: lts-20.21
+require-stack-version: ">= 1.0.0"
+
+packages:
+- '.'
+
+flags: {}
+
+extra-deps:
+  - crypton-1.0.1@sha256:f41316fbc6ad878396e476355e27b70ac35c344d74e3eefafe709e03b192be9e,14527
diff --git a/stack-ghc-9.4.yaml b/stack-ghc-9.4.yaml
new file mode 100644
--- /dev/null
+++ b/stack-ghc-9.4.yaml
@@ -0,0 +1,7 @@
+resolver: lts-21.25
+require-stack-version: ">= 1.0.0"
+
+packages:
+- '.'
+
+flags: {}
diff --git a/stack-ghc-9.6.yaml b/stack-ghc-9.6.yaml
new file mode 100644
--- /dev/null
+++ b/stack-ghc-9.6.yaml
@@ -0,0 +1,7 @@
+resolver: lts-22.34
+require-stack-version: ">= 1.0.0"
+
+packages:
+- '.'
+
+flags: {}
diff --git a/stack-ghc-9.8.yaml b/stack-ghc-9.8.yaml
new file mode 100644
--- /dev/null
+++ b/stack-ghc-9.8.yaml
@@ -0,0 +1,7 @@
+resolver: lts-23.4
+require-stack-version: ">= 1.0.0"
+
+packages:
+- '.'
+
+flags: {}
