diff --git a/CHANGES.markdown b/CHANGES.markdown
--- a/CHANGES.markdown
+++ b/CHANGES.markdown
@@ -1,3 +1,6 @@
+## Changes in 0.9.2
+ - Allow building on the HaLVM
+
 ## Changes in 0.9.1
  - Use the more efficient version of `replicateM` and `replicateM_` introduced
    in `base-4.9`
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2012-2016 Simon Hengel <sol@typeful.net> and Ryan Scott <ryan.gl.scott@gmail.com>
+Copyright (c) 2012-2017 Simon Hengel <sol@typeful.net> and Ryan Scott <ryan.gl.scott@gmail.com>
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff --git a/README.markdown b/README.markdown
--- a/README.markdown
+++ b/README.markdown
@@ -245,6 +245,7 @@
 
 ## Supported versions of GHC/`base`
 
+ * `ghc-8.0.2`  / `base-4.9.1.0`
  * `ghc-8.0.1`  / `base-4.9.0.0`
  * `ghc-7.10.3` / `base-4.8.2.0`
  * `ghc-7.10.2` / `base-4.8.1.0`
diff --git a/base-compat.cabal b/base-compat.cabal
--- a/base-compat.cabal
+++ b/base-compat.cabal
@@ -1,10 +1,10 @@
 name:             base-compat
-version:          0.9.1
+version:          0.9.2
 license:          MIT
 license-file:     LICENSE
-copyright:        (c) 2012-2016 Simon Hengel,
-                  (c) 2014-2016 João Cristóvão,
-                  (c) 2015-2016 Ryan Scott
+copyright:        (c) 2012-2017 Simon Hengel,
+                  (c) 2014-2017 João Cristóvão,
+                  (c) 2015-2017 Ryan Scott
 author:           Simon Hengel <sol@typeful.net>,
                   João Cristóvão <jmacristovao@gmail.com>,
                   Ryan Scott <ryan.gl.scott@gmail.com>
@@ -38,7 +38,7 @@
                   , GHC == 7.6.1,  GHC == 7.6.2,  GHC == 7.6.3
                   , GHC == 7.8.1,  GHC == 7.8.2,  GHC == 7.8.3,  GHC == 7.8.4
                   , GHC == 7.10.1, GHC == 7.10.2, GHC == 7.10.3
-                  , GHC == 8.0.1
+                  , GHC == 8.0.1,  GHC == 8.0.2
 extra-source-files: CHANGES.markdown, README.markdown
 
 source-repository head
@@ -50,7 +50,7 @@
       -Wall
   build-depends:
       base >= 4.3 && < 5
-  if !os(windows)
+  if !os(windows) && !os(halvm)
       build-depends: unix
   ghc-options:
       -fno-warn-duplicate-exports
