File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 5555* #1354 ` Error ` has been modified to be Copy, removing all
5656 heap-allocated variants.
5757
58-
5958## Bug Fixes
6059
6160* #1202 Fix a space leak where blobs were not
6261 removed when replaced by another blob.
6362* #1229 the powerful ALICE crash consistency tool has been
6463 used to discover several crash vulnerabilities, now fixed.
6564
65+ # 0.34.7
66+
67+ ## Bug Fixes
68+
69+ * #1314 Fix a bug in Subscriber's Future impl.
70+
6671# 0.34.6
6772
6873## Improvements
Original file line number Diff line number Diff line change 11[package ]
22name = " sled"
3- version = " 0.34.6 "
3+ version = " 0.34.7 "
44authors = [
" Tyler Neely <[email protected] >" ]
55description = " Lightweight high-performance pure-rust transactional embedded database."
66license = " MIT/Apache-2.0"
Original file line number Diff line number Diff line change @@ -239,10 +239,7 @@ impl Drop for Subscribers {
239239}
240240
241241impl Subscribers {
242- pub ( crate ) fn register (
243- & self ,
244- prefix : & [ u8 ]
245- ) -> Subscriber {
242+ pub ( crate ) fn register ( & self , prefix : & [ u8 ] ) -> Subscriber {
246243 self . ever_used . store ( true , Relaxed ) ;
247244 let r_mu = {
248245 let r_mu = self . watched . read ( ) ;
You can’t perform that action at this time.
0 commit comments