Changelog for cached-io-1.3.0.0

Revision history for cached-io

1.3.0.0

Migrating from <=1.2.0.0 to 1.3.0.0

-- Previous versions
f :: IO ()
f = do
  cachedAction <- cachedIO action :: IO (IO a)
  cachedResult <- cachedAction

-- New version
f :: IO ()
f = do
  cachedAction <- cachedIO action :: IO (Cached IO a)
  cachedResult <- runCached cachedAction

1.2.0.0

Thank you glasserc for your work on previous versions, and a special thanks to Arguggi for contributing many of the improvements incorporated into this version.

1.1.0.0 and prior

These versions were published by glasserc.