bump version

This commit is contained in:
ripytide 2023-04-19 14:55:10 +01:00
parent d1a15f51fa
commit fc23e9b96b
No known key found for this signature in database
GPG Key ID: B2629F9EC7C2FE8C
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -105,7 +105,7 @@ dependencies = [
[[package]]
name = "range_bounds_map"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"btree_monstrousity",
"either",

View File

@ -1,6 +1,6 @@
[package]
name = "range_bounds_map"
version = "0.3.1"
version = "0.3.2"
authors = ["James Forster <james.forsterer@gmail.com>"]
edition = "2021"
description = """

View File

@ -106,7 +106,7 @@ where
pub fn gaps<'a, Q>(
&'a self,
range: Q,
) -> impl Iterator<Item = (Bound<I>, Bound<I>)> + '_
) -> impl DoubleEndedIterator<Item = (Bound<I>, Bound<I>)> + '_
where
Q: NiceRange<I> + 'a,
{