diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
 Changes
 =======
 
+Version 1.1.0.4
+---------------
+
+Make tasty work with GHCJS
+
 Version 1.1.0.3
 ---------------
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -107,6 +107,9 @@
   property-based testing (based on [Hedgehog](http://hackage.haskell.org/package/hedgehog))
 * [tasty-hspec](http://hackage.haskell.org/package/tasty-hspec) — for
   [Hspec](http://hspec.github.io/) tests
+* [tasty-leancheck](http://hackage.haskell.org/package/tasty-leancheck) — for
+  enumerative property-based testing
+  (based on [LeanCheck](http://hackage.haskell.org/package/leancheck))
 * [tasty-program](http://hackage.haskell.org/package/tasty-program) — run
   external program and test whether it terminates successfully
 
diff --git a/tasty.cabal b/tasty.cabal
--- a/tasty.cabal
+++ b/tasty.cabal
@@ -2,7 +2,7 @@
 --  see http://haskell.org/cabal/users-guide/
 
 name:                tasty
-version:             1.1.0.3
+version:             1.1.0.4
 synopsis:            Modern and extensible testing framework
 description:         Tasty is a modern testing framework for Haskell.
                      It lets you combine your unit tests, golden
@@ -77,7 +77,7 @@
     -- for GHC.Generics
     build-depends: ghc-prim
 
-  if !os(windows)
+  if !os(windows) && !impl(ghcjs)
     build-depends: unix,
                    wcwidth
     cpp-options: -DUNIX
