Skip to content

Commit 21056cf

Browse files
authored
Merge pull request #94 from jeffparsons/prepare_v1.5.0
Prepare v1.5.0
2 parents c42016f + c6549fd commit 21056cf

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
1-
### v1.5.0 (unreleased)
1+
### v1.5.0 (2024-02-09) "xfbs rampage edition"
2+
3+
Huge thanks to [xfbs](https://github.com/xfbs), who did pretty much all the work you see in the changelog below! 💖
4+
5+
- **Features**:
6+
- Add `union` and `intersection` methods to iterate over the union or intersection of two sets.
7+
- Add `first_range_value` and `last_range_value` methods to map types and `first` and `last` methods to set types.
8+
- Add literal macros for all collection types — e.g. `range_set![0..100, 200..300, 400..500]`.
9+
- Implement `Default` and `Hash` for all collection types.
10+
- Implement `DoubleEndedIterator` for all iterators.
11+
- Implement `From<[_; N]>` (e.g. `From<[Range<T>; N]> for RangeSet<T>`) for all collections. (Previously you could build a collection from an iterator, but not directly from an array.)
12+
- Implement `BitOr` and `BitAnd` for set types. (Convenience wrapper around the `union` and `intersection` methods mentioned above.)
13+
- Accept any `R: Borrow<Range<K>>` as argument to `overlapping` methods, allowing it to take ranges by value.
214

315
- **Changes**:
416
- Bump minimum supported Rust version to 1.66.0 (released 2022-12-15). This is to gain access to `BTreeMap::first_key_value` and `BTreeMap::last_key_value`, and for compatibility with new versions of some of rangemap's test dependencies.
5-
- TODO: All of xfbs's PRs!
17+
18+
- **Internal**:
19+
- New benchmarks and improved test coverage.
620

721
### v1.4.0 (2023-09-19)
822

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rangemap"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
authors = ["Jeff Parsons <[email protected]>"]
55
edition = "2018"
66
license = "MIT/Apache-2.0"

src/inclusive_map.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ use serde::{
2929
/// because adjacent ranges can be detected using equality of range ends alone.)
3030
///
3131
/// You can provide these functions either by implementing the
32-
/// [`StepLite`](crate::StepLite) trait for your key type `K`, or,
32+
/// [`StepLite`] trait for your key type `K`, or,
3333
/// if this is impossible because of Rust's "orphan rules",
3434
/// you can provide equivalent free functions using the `StepFnsT` type parameter.
35-
/// [`StepLite`](crate::StepLite) is implemented for all standard integer types,
35+
/// [`StepLite`] is implemented for all standard integer types,
3636
/// but not for any third party crate types.
3737
#[derive(Clone, Default)]
3838
pub struct RangeInclusiveMap<K, V, StepFnsT = K> {

0 commit comments

Comments
 (0)