diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,7 @@
+# 0.1.1.4 (2023-12-13)
+
+* Add `wasm32` support (see [#20](https://github.com/klapaucius/vector-hashtables/pull/20)).
+
 # 0.1.1.3 (2023-04-23)
 
 * cleanup the cabal file
diff --git a/vector-hashtables.cabal b/vector-hashtables.cabal
--- a/vector-hashtables.cabal
+++ b/vector-hashtables.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.0
 name:                vector-hashtables
-version:             0.1.1.3
+version:             0.1.1.4
 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).
@@ -27,7 +27,7 @@
     GHC == 8.6.5
 
 library
-  if arch(i386)
+  if arch(i386) || arch(wasm32)
     hs-source-dirs:    src, src-i386
   else
     hs-source-dirs:    src, src-gen
