diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,8 @@
+# 0.1.1.2 (2023-01-31)
+
+- Relax `hspec` boundaries (see [#14](https://github.com/klapaucius/vector-hashtables/pull/14)).
+- Set lower bound for `primtive` (see [#12](https://github.com/klapaucius/vector-hashtables/pull/12)).
+
 # 0.1.1.1 (2021-09-10)
 
 - Optimise `insertWithIndex` function ([#10](https://github.com/klapaucius/vector-hashtables/pull/10)).
diff --git a/vector-hashtables.cabal b/vector-hashtables.cabal
--- a/vector-hashtables.cabal
+++ b/vector-hashtables.cabal
@@ -1,5 +1,5 @@
 name:                vector-hashtables
-version:             0.1.1.1
+version:             0.1.1.2
 synopsis:            Efficient vector-based mutable hashtables implementation.
 description:
   This package provides efficient vector-based hashtable implementation similar to .NET Generic Dictionary implementation (at the time of 2015).
@@ -9,8 +9,8 @@
 license:             BSD3
 license-file:        LICENSE
 author:              klapaucius
-maintainer:          klapaucius, swamp_agr
-copyright:           2016-2021 klapaucius, swamp_agr
+maintainer:          klapaucius, swamp_agr, ArtemPelenitsyn
+copyright:           2016-2023 klapaucius, swamp_agr
 category:            Data
 build-type:          Simple
 extra-source-files:  README.md,
@@ -30,7 +30,7 @@
                        Data.Primitive.PrimArray.Utils
   ghc-options:         -O2
   build-depends:       base >= 4.7 && < 5
-                     , primitive
+                     , primitive >= 0.7.1.0
                      , vector
                      , hashable
   default-language:    Haskell2010
@@ -65,12 +65,12 @@
 
   -- Additional dependencies
   build-depends:
-      hspec                >= 2.6.0    && < 2.8
+      hspec                >= 2.6.0    && < 2.11
     , QuickCheck           >= 2.12.6.1 && < 2.15
     , quickcheck-instances >= 0.3.19   && < 0.4
 
   build-tool-depends:
-    hspec-discover:hspec-discover >= 2.6.0 && < 2.8
+    hspec-discover:hspec-discover >= 2.6.0 && < 2.11
 
 source-repository head
   type:     git
