Skip to content

Commit a7ea664

Browse files
committed
Merge branch 'tyler_0.34.7' into tyler_always_use_threads
2 parents 7a0b59c + d81865d commit a7ea664

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,19 @@
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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sled"
3-
version = "0.34.6"
3+
version = "0.34.7"
44
authors = ["Tyler Neely <[email protected]>"]
55
description = "Lightweight high-performance pure-rust transactional embedded database."
66
license = "MIT/Apache-2.0"

src/subscriber.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,10 +239,7 @@ impl Drop for Subscribers {
239239
}
240240

241241
impl 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();

0 commit comments

Comments
 (0)