From c23d88185939ebc8a7ca6af3ff7d60e1c9b57e5d Mon Sep 17 00:00:00 2001 From: Tatsuya Kawano Date: Wed, 6 Sep 2023 20:54:05 +0800 Subject: [PATCH] Remove a duplicate paragraph from the migration guide --- MIGRATION-GUIDE.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/MIGRATION-GUIDE.md b/MIGRATION-GUIDE.md index 199b690e..d5354d1b 100644 --- a/MIGRATION-GUIDE.md +++ b/MIGRATION-GUIDE.md @@ -14,13 +14,9 @@ describes the code changes required to migrate to v0.12.0. `sync::SegmentedCache` no longer spawn background threads. - The `scheduled-thread-pool` crate was removed from the dependency. - Because of this change, many private methods and some public methods under the - `future` module were converted to `async` methods. You may need to add `.await` + `future` module were converted to `async` methods. You will need to add `.await` to your code for those methods. - - Because of this change, many external and internal methods of `future::Cache` - were converted to `async` methods. You may need to add `.await` to your code for - those methods. - - **Immediate notification delivery**: The `notification::DeliveryMode` enum for the eviction listener was removed. Now all cache types behave as if the `Immediate` delivery mode is specified.