File: CHANGES.md

package info (click to toggle)
ruby-timers 4.1.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 196 kB
  • sloc: ruby: 668; makefile: 7
file content (54 lines) | stat: -rw-r--r-- 1,534 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
4.1.1 (2015-08-21)
------------------
* Remove `RubyProf` from Gemfile and a test, due to it providing no substantial benefit while increasing problems building bundles under Rubinius.

4.1.0 (2015-08-16)
------------------
* Addition of `now_and_every` method; fires block immediately, then sets recurring timer.
* Includes `now_and_after` method; does the same as above for one-shot timers: essentially a "two-shot" timer.

4.0.1 (2014-09-10)
------------------
* Memory leak fixes
* mathn fix for those crazy enough to use it

4.0.0 (2014-07-27)
------------------
* Replace Timers::Timeout with Timers::Wait
* Timers::Group#wait_interval now returns nil when no timers, a postive or
  negative interval which if positive is the amount of time required to wait
  and if negative, how far in the past the latest timer should have fired
* Performance improvements

3.0.1 (2014-06-27)
------------------
* Require 'set' automatically

3.0.0 (2014-06-14)
------------------
* Refactor `Timers` class into `Timers::Group`
* Add `Timers::Timeout` class for implementing timeouts
* Fix timer fudging
* Update to RSpec 3

2.0.0 (2013-12-30)
------------------
* Switch to Hitimes for high precision monotonic counters
* Removed Timers#time. Replaced with Timers#current_offset which provides a
  monotonic time counter.

1.1.0
-----
* Timers#after_milliseconds and #after_ms for waiting in milliseconds

1.0.2
-----
* Handle overdue timers correctly

1.0.1
-----
* Explicitly require Forwardable from stdlib

1.0.0
-----
* Initial release