Version bump

This commit is contained in:
Michael Snoyman 2014-08-07 15:48:27 +03:00
parent 6b4248b85d
commit ffb51c3f7b

View File

@ -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.