diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,17 @@
-## Changelog
+# Changelog
 
-### 2.0.0
+`hslua-examples` uses [PVP Versioning][].
 
-Release pending.
+## hslua-examples-2.0.1
 
-Complete rewrite.
+Released 29-01-2022.
+
+-   Allowed hslua-2.1, hslua-marshalling-2.1.
+
+## hslua-examples-2.0.0
+
+Released 2021-10-21.
+
+-   Complete rewrite.
+
+  [PVP Versioning]: https://pvp.haskell.org
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,7 +1,7 @@
 Copyright © 1994-2020 Lua.org, PUC-Rio.
 Copyright © 2007-2012 Gracjan Polak
 Copyright © 2012-2015 Ömer Sinan Ağacan
-Copyright © 2016-2021 Albert Krewinkel
+Copyright © 2016-2022 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-examples.cabal b/hslua-examples.cabal
--- a/hslua-examples.cabal
+++ b/hslua-examples.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.2
 name:                hslua-examples
-version:             2.0.0
+version:             2.0.1
 synopsis:            Examples of how to combine Haskell and Lua.
 description:         The HsLua modules provide wrappers of Lua language
                      interpreter as described on the official
@@ -47,22 +47,22 @@
   import:              common-options
   main-is:             print-version.hs
   hs-source-dirs:      print-version
-  build-depends:       lua               >= 2.0 && < 2.1
+  build-depends:       lua               >= 2.0 && < 2.2
 
 executable run-lua
   import:              common-options
   main-is:             run-lua.hs
   hs-source-dirs:      run-lua
   build-depends:       bytestring
-                     , hslua             >= 2.0 && < 2.1
+                     , hslua             >= 2.0 && < 2.2
 
 executable wishlist
   import:              common-options
   main-is:             wishlist.hs
   hs-source-dirs:      wishlist
   build-depends:       bytestring
-                     , hslua             >= 2.0 && < 2.1
-                     , hslua-marshalling >= 2.0 && < 2.1
+                     , hslua             >= 2.0 && < 2.2
+                     , hslua-marshalling >= 2.0 && < 2.2
                      , text
 
 executable factorial
@@ -70,10 +70,10 @@
   main-is:             factorial.hs
   hs-source-dirs:      factorial
   build-depends:       bytestring
-                     , hslua             >= 2.0 && < 2.1
+                     , hslua             >= 2.0 && < 2.2
 
 executable low-level-factorial
   import:              common-options
   main-is:             low-level-factorial.hs
   hs-source-dirs:      low-level-factorial
-  build-depends:       lua               >= 2.0 && < 2.1
+  build-depends:       lua               >= 2.0 && < 2.2
