Skip to content

Commit bcce4cc

Browse files
bors[bot]cuviper
andcommitted
Merge #25
25: bump autocfg to fix no_std probing r=cuviper a=cuviper Co-authored-by: Josh Stone <[email protected]>
2 parents 98c3900 + 64a9656 commit bcce4cc

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ script:
1414
- ./ci/test_full.sh
1515
matrix:
1616
include:
17+
# try a target that doesn't have std at all
18+
- name: "no_std"
19+
rust: stable
20+
env: TARGET=thumbv6m-none-eabi
21+
before_script:
22+
- rustup target add $TARGET
23+
script:
24+
- cargo build --verbose --target $TARGET --no-default-features --features i128
1725
- name: "rustfmt"
1826
rust: 1.31.0
1927
before_script:

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories = ["algorithms", "science", "no-std"]
88
license = "MIT/Apache-2.0"
99
repository = "https://github.com/rust-num/num-integer"
1010
name = "num-integer"
11-
version = "0.1.40"
11+
version = "0.1.41"
1212
readme = "README.md"
1313
build = "build.rs"
1414
exclude = ["/ci/*", "/.travis.yml", "/bors.toml"]
@@ -26,4 +26,4 @@ i128 = ["num-traits/i128"]
2626
std = ["num-traits/std"]
2727

2828
[build-dependencies]
29-
autocfg = "0.1.2"
29+
autocfg = "0.1.3"

RELEASES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Release 0.1.41 (2019-05-21)
2+
3+
- [Fixed feature detection on `no_std` targets][25].
4+
5+
**Contributors**: @cuviper
6+
7+
[25]: https://github.com/rust-num/num-integer/pull/25
8+
19
# Release 0.1.40 (2019-05-20)
210

311
- [Optimized primitive `gcd` by avoiding memory swaps][11].

0 commit comments

Comments
 (0)