bump version

This commit is contained in:
ripytide
2023-04-19 14:55:10 +01:00
parent d1a15f51fa
commit fc23e9b96b
3 changed files with 3 additions and 3 deletions
Generated
+1 -1
View File
@@ -105,7 +105,7 @@ dependencies = [
[[package]]
name = "range_bounds_map"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"btree_monstrousity",
"either",
+1 -1
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 = """
+1 -1
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,
{