|
19 | 19 | - [[`6b65dd457a`](https://github.com/rustasync/futures-timer/commit/6b65dd457a9d8f1e9b78cb3d0e57e74ed8bb10be)] Fix reset (Alex Crichton)
|
20 | 20 | - [[`2603432e78`](https://github.com/rustasync/futures-timer/commit/2603432e78322c4f272509b3e938d7a58194d023)] Initial commit (Alex Crichton)
|
21 | 21 |
|
| 22 | +### Stats |
| 23 | +```diff |
| 24 | + .travis.yml | 17 +----- |
| 25 | + CHANGELOG.md | 165 +------------------------------------------------------- |
| 26 | + Cargo.toml | 15 +---- |
| 27 | + README.md | 31 ++++++---- |
| 28 | + src/arc_list.rs | 18 ++---- |
| 29 | + src/delay.rs | 72 +++++++----------------- |
| 30 | + src/ext.rs | 135 ++++++++++++++++----------------------------- |
| 31 | + src/global.rs | 56 +++++-------------- |
| 32 | + src/heap.rs | 58 +++++++------------ |
| 33 | + src/interval.rs | 97 ++++++++++++-------------------- |
| 34 | + src/lib.rs | 105 ++++++++++++++--------------------- |
| 35 | + tests/ext.rs | 102 +---------------------------------- |
| 36 | + tests/interval.rs | 22 +++---- |
| 37 | + tests/smoke.rs | 63 ++++++++------------- |
| 38 | + tests/timeout.rs | 26 +++++---- |
| 39 | + 15 files changed, 281 insertions(+), 701 deletions(-) |
| 40 | +``` |
| 41 | + |
| 42 | + |
| 43 | +## 2018-02-07, Version 0.1.1 |
| 44 | +### Commits |
| 45 | +- [[`4637e672f8`](https://github.com/rustasync/futures-timer/commit/4637e672f8748c6ee41ebc93a1a97e118ef8b855)] Bump to 0.1.1 (Alex Crichton) |
| 46 | +- [[`0cf3dab722`](https://github.com/rustasync/futures-timer/commit/0cf3dab722860b5623cc835d10a1f78d953c63d9)] Add extension traits for convenience methods (Alex Crichton) |
| 47 | +- [[`56c46fe881`](https://github.com/rustasync/futures-timer/commit/56c46fe8812cde701dd983d843c8f92189b2f911)] Beef up the README slightly (Alex Crichton) |
| 48 | +- [[`dfd80e2e2b`](https://github.com/rustasync/futures-timer/commit/dfd80e2e2b011bc0a790d88f8219fc838e02b608)] Various updates: (Alex Crichton) |
| 49 | +- [[`2f8e18cc71`](https://github.com/rustasync/futures-timer/commit/2f8e18cc718a3bc57cabcbbeaf79cbead0bb47f0)] Rename `Sleep` to `Delay` (Alex Crichton) |
| 50 | +- [[`9715aa6417`](https://github.com/rustasync/futures-timer/commit/9715aa64176ef006a4bcda05dc8188160476a2d6)] Clarify wording of license information in README. (Alex Crichton) |
| 51 | +- [[`38e14656d7`](https://github.com/rustasync/futures-timer/commit/38e14656d76cb9478eaea0c54b1de117bacd63ee)] Rename Timeout to Sleep (Alex Crichton) |
| 52 | +- [[`9e58f3a330`](https://github.com/rustasync/futures-timer/commit/9e58f3a3307422042b93787cb18d93cf6c6d6671)] Import some tokio-core tests (Alex Crichton) |
| 53 | +- [[`9c4a3958cd`](https://github.com/rustasync/futures-timer/commit/9c4a3958cde60156941415bb806db05d21ca3f1b)] Correct take_and_seal implementation (Alex Crichton) |
| 54 | +- [[`56dddd9d57`](https://github.com/rustasync/futures-timer/commit/56dddd9d5716ed6cef8841f70c3be6d1536f2dac)] Fix some races with invalidating timeouts (Alex Crichton) |
| 55 | +- [[`1653e6c789`](https://github.com/rustasync/futures-timer/commit/1653e6c7896348ec928c71dd272cecd8b26ec951)] typo (Alex Crichton) |
| 56 | +- [[`e18b12069b`](https://github.com/rustasync/futures-timer/commit/e18b12069b50a02a217aa86945e5b68ac89e1459)] Add a doc link (Alex Crichton) |
| 57 | +- [[`c3d239e874`](https://github.com/rustasync/futures-timer/commit/c3d239e8740a217a3a352ad3538e4bd694794097)] Add various metadata (Alex Crichton) |
| 58 | +- [[`57324b99d4`](https://github.com/rustasync/futures-timer/commit/57324b99d4b2906bda548514b2bf238c7f83aee6)] Add Travis config (Alex Crichton) |
| 59 | +- [[`4acd39db09`](https://github.com/rustasync/futures-timer/commit/4acd39db096d97c5f9d60380194b9680a402ebf7)] Make `fires_at` private (Alex Crichton) |
| 60 | +- [[`7b3f3b05f0`](https://github.com/rustasync/futures-timer/commit/7b3f3b05f0c2edc8f502fb22f406dc9c11d55da8)] Add Interval (Alex Crichton) |
| 61 | +- [[`6b65dd457a`](https://github.com/rustasync/futures-timer/commit/6b65dd457a9d8f1e9b78cb3d0e57e74ed8bb10be)] Fix reset (Alex Crichton) |
| 62 | +- [[`2603432e78`](https://github.com/rustasync/futures-timer/commit/2603432e78322c4f272509b3e938d7a58194d023)] Initial commit (Alex Crichton) |
| 63 | + |
22 | 64 | ### Stats
|
23 | 65 | ```diff
|
24 | 66 | .travis.yml | 17 +------
|
|
0 commit comments