From 847309f8733f1d9af4fc54f69d8f01f0bf9af0a8 Mon Sep 17 00:00:00 2001 From: Pedro Arruda Date: Sat, 4 Nov 2023 10:19:06 -0300 Subject: [PATCH] It's actually version 0.6.6 --- Cargo.toml | 2 +- changelog.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 456929c..56fc68d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yaque" -version = "0.6.5" +version = "0.6.6" authors = ["Pedro Arruda "] edition = "2018" description = "Yaque is yet another disk-backed persistent queue for Rust" diff --git a/changelog.md b/changelog.md index 844af1b..e2cac7f 100644 --- a/changelog.md +++ b/changelog.md @@ -150,7 +150,7 @@ leading to clearer code. * [@grant0417](https://github.com/grant0417) -## Version 0.6.5: +## Version 0.6.6: * Added `Receiver::recv_batch_up_to` and `Receiver::try_recv_batch_up_to` so that you can fetch "up to `n`" elements from the queue or wait until one arrives.