| OLD | NEW |
| 1 ## 1.3.3 |
| 2 |
| 3 * Declare support for `async` 2.0.0. |
| 4 |
| 5 ## 1.3.2 |
| 6 |
| 7 * Update to make the code work with strong-mode clean Zone API. |
| 8 |
| 9 * Required minimum SDK of 1.23.0. |
| 10 |
| 1 ## 1.3.1 | 11 ## 1.3.1 |
| 2 | 12 |
| 3 * Fix the type annotation of `Pool.withResource()` to indicate that it takes | 13 * Fix the type annotation of `Pool.withResource()` to indicate that it takes |
| 4 `() -> FutureOr<T>`. | 14 `() -> FutureOr<T>`. |
| 5 | 15 |
| 6 ## 1.3.0 | 16 ## 1.3.0 |
| 7 | 17 |
| 8 * Add a `Pool.done` getter that returns the same future returned by | 18 * Add a `Pool.done` getter that returns the same future returned by |
| 9 `Pool.close()`. | 19 `Pool.close()`. |
| 10 | 20 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 * Add `PoolResource.allowRelease()`, which allows a resource to indicate that it | 45 * Add `PoolResource.allowRelease()`, which allows a resource to indicate that it |
| 36 can be released without forcing it to deallocate immediately. | 46 can be released without forcing it to deallocate immediately. |
| 37 | 47 |
| 38 ## 1.0.2 | 48 ## 1.0.2 |
| 39 | 49 |
| 40 * Fixed the homepage. | 50 * Fixed the homepage. |
| 41 | 51 |
| 42 ## 1.0.1 | 52 ## 1.0.1 |
| 43 | 53 |
| 44 * A `TimeoutException` is now correctly thrown if the pool detects a deadlock. | 54 * A `TimeoutException` is now correctly thrown if the pool detects a deadlock. |
| OLD | NEW |