From 48699319b35cddf2a6978dd95c4462b4adaf2b05 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 11 Jun 2020 16:54:04 -0700 Subject: [PATCH] Release 0.1.41 --- Cargo.toml | 2 +- RELEASES.md | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cbc2756..09141b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = ["algorithms", "science", "no-std"] license = "MIT/Apache-2.0" repository = "/~https://github.com/rust-num/num-iter" name = "num-iter" -version = "0.1.40" +version = "0.1.41" readme = "README.md" build = "build.rs" exclude = ["/bors.toml", "/ci/*", "/.github/*"] diff --git a/RELEASES.md b/RELEASES.md index 36e5ef6..5fcc532 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,12 @@ +# Release 0.1.41 (2020-06-11) + +- [The new `RangeFrom` and `RangeFromStep` iterators][18] will count from a + given starting value, without any terminating value. + +**Contributors**: @cuviper, @sollyucko + +[18]: /~https://github.com/rust-num/num-iter/pull/18 + # Release 0.1.40 (2020-01-09) - [Updated the `autocfg` build dependency to 1.0][14].