From ffb51c3f7b0ba21cd0884ddbc1fc8ac9c73c72ad Mon Sep 17 00:00:00 2001 From: Michael Snoyman Date: Thu, 7 Aug 2014 15:48:27 +0300 Subject: [PATCH] Version bump --- auto-update/auto-update.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto-update/auto-update.cabal b/auto-update/auto-update.cabal index c014ebbf..ab4324e6 100644 --- a/auto-update/auto-update.cabal +++ b/auto-update/auto-update.cabal @@ -1,5 +1,5 @@ name: auto-update -version: 0.1.1.0 +version: 0.1.1.1 synopsis: Efficiently run periodic, on-demand actions description: A common problem is the desire to have an action run at a scheduled interval, but only if it is needed. For example, instead of having every web request result in a new @getCurrentTime@ call, we'd like to have a single worker thread run every second, updating an @IORef@. However, if the request frequency is less than once per second, this is a pessimization, and worse, kills idle GC.