From dacfc43c44fd196918d1a220bcd47131ba78fb8f Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 11 Mar 2024 13:57:53 -0500 Subject: [PATCH] Fix release document --- releases/0.5.9.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releases/0.5.9.md b/releases/0.5.9.md index 9fe7352..e2d55b2 100644 --- a/releases/0.5.9.md +++ b/releases/0.5.9.md @@ -20,13 +20,13 @@ version. ### Fix Postgres Pooling -When pict-rs 0.5.7 was built without the `tokio_unstable` flag, it would use tokio's `spwan_local` +When pict-rs 0.5.8 was built without the `tokio_unstable` flag, it would use tokio's `spwan_local` utility from outside a LocalSet, leading to panics and timeouts. This release replaces the use of `spawn_local` with `spawn` in that scenario. ### Fix io-uring Feature -As mentioned in the 0.5.7 release notes, io-uring is not considered to be a stable feature. However, +As mentioned in the 0.5.8 release notes, io-uring is not considered to be a stable feature. However, 0.5.8 should make it usable again. Instead of manually launching a tokio_uring runtime, pict-rs once again relies on actix-rt to configure a System for use with io-uring.