diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## Version 0.2.8 (2015-01-07)
+
+- Fix test with time 1.5
+
 ## Version 0.2.7 (2015-01-07)
 
 - Add compatibility module for easy convertion with time and other standards.
diff --git a/hourglass.cabal b/hourglass.cabal
--- a/hourglass.cabal
+++ b/hourglass.cabal
@@ -1,5 +1,5 @@
 Name:                hourglass
-Version:             0.2.7
+Version:             0.2.8
 Synopsis:            simple performant time related library
 Description:
     Simple time library focusing on simple but powerful and performant API
diff --git a/tests/Tests.hs b/tests/Tests.hs
--- a/tests/Tests.hs
+++ b/tests/Tests.hs
@@ -25,7 +25,11 @@
 import qualified Data.Time.Clock as T
 import qualified Data.Time.Clock.POSIX as T
 import qualified Data.Time.Format as T
+#if MIN_VERSION_time(1,5,0)
+import qualified System.Locale as T hiding (defaultTimeLocale)
+#else
 import qualified System.Locale as T
+#endif
 
 import qualified Control.Exception as E
 
