Skip to content

Commit 6bfec76

Browse files
authored
Merge pull request #31 from cuviper/rename-head
Rename master to main
2 parents e720b47 + 4c2c471 commit 6bfec76

5 files changed

Lines changed: 21 additions & 9 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: master
1+
name: main
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
schedule:
77
- cron: '0 0 * * 0' # 00:00 Sunday
88

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories = ["algorithms", "science", "no-std"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/rust-num/num-iter"
1010
name = "num-iter"
11-
version = "0.1.45"
11+
version = "0.1.46"
1212
readme = "README.md"
1313
exclude = ["/ci/*", "/.github/*"]
1414
edition = "2018"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![crate](https://img.shields.io/crates/v/num-iter.svg)](https://crates.io/crates/num-iter)
44
[![documentation](https://docs.rs/num-iter/badge.svg)](https://docs.rs/num-iter)
55
[![minimum rustc 1.31](https://img.shields.io/badge/rustc-1.31+-red.svg)](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
6-
[![build status](https://github.com/rust-num/num-iter/workflows/master/badge.svg)](https://github.com/rust-num/num-iter/actions)
6+
[![build status](https://github.com/rust-num/num-iter/actions/workflows/main.yaml/badge.svg)](https://github.com/rust-num/num-iter/actions/workflows/main.yaml)
77

88
Generic `Range` iterators for Rust.
99

RELEASES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Release 0.1.46 (2026-07-07)
2+
3+
- [Drop unused `autocfg` build dependency][30]
4+
5+
**Contributors**: @cuviper, @paolobarbolini
6+
7+
[30]: https://github.com/rust-num/num-iter/pull/30
8+
19
# Release 0.1.45 (2024-05-03)
210

311
- [Use `Integer::dec` in `DoubleEndedIterator`][29]

ci/test_full.sh

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ check_version() {
2121
]]
2222
}
2323

24+
export CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS=fallback
25+
generate_lockfile() {
26+
cargo generate-lockfile
27+
if ! check_version 1.85 ; then
28+
cargo +stable update
29+
fi
30+
}
31+
2432
echo "Testing $CRATE on rustc $RUST_VERSION"
2533
if ! check_version $MSRV ; then
2634
echo "The minimum for $CRATE is rustc $MSRV"
@@ -30,11 +38,7 @@ fi
3038
FEATURES=()
3139
echo "Testing supported features: ${FEATURES[*]}"
3240

33-
cargo generate-lockfile
34-
35-
# num-traits 0.2.19 started using dep: features, which requires 1.60 and is
36-
# otherwise ignored down to 1.51, but we need a manual downgrade before that.
37-
check_version 1.51 || cargo update -p num-traits --precise 0.2.18
41+
generate_lockfile
3842

3943
set -x
4044

0 commit comments

Comments
 (0)