time 1.11.1 → 1.11.1.1
raw patch · 4 files changed
+8/−4 lines, 4 files
Files
- changelog.md +3/−0
- configure.ac +1/−1
- lib/Data/Time/Clock/Internal/SystemTime.hs +3/−2
- time.cabal +1/−1
changelog.md view
@@ -1,5 +1,8 @@ # Change Log +## [1.11.1.1]+- fix module Safe status+ ## [1.11.1] - all modules Safe or Trustworthy - fix NFData instances for DiffTime, NominalDiffTime, TimeOfDay
configure.ac view
@@ -1,4 +1,4 @@-AC_INIT([Haskell time package], [1.11.1], [ashley@semantic.org], [time])+AC_INIT([Haskell time package], [1.11.1.1], [ashley@semantic.org], [time]) # Safety check: Ensure that we are in the correct source directory. AC_CONFIG_SRCDIR([lib/include/HsTime.h])
lib/Data/Time/Clock/Internal/SystemTime.hs view
@@ -1,4 +1,6 @@-#ifdef mingw32_HOST_OS+#include "HsTimeConfig.h"++#if defined(mingw32_HOST_OS) || !defined(HAVE_CLOCK_GETTIME) {-# LANGUAGE Safe #-} #else {-# LANGUAGE Trustworthy #-}@@ -16,7 +18,6 @@ import Data.Int (Int64) import Data.Time.Clock.Internal.DiffTime import Data.Word-#include "HsTimeConfig.h" #ifdef mingw32_HOST_OS import qualified System.Win32.Time as Win32
time.cabal view
@@ -1,5 +1,5 @@ name: time-version: 1.11.1+version: 1.11.1.1 stability: stable license: BSD3 license-file: LICENSE