diff --git a/Cargo.toml b/Cargo.toml index f3f2cc9..6d682c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = ["algorithms", "data-structures", "science", "no-std"] license = "MIT OR Apache-2.0" name = "num-rational" repository = "https://github.com/rust-num/num-rational" -version = "0.3.1" +version = "0.3.2" readme = "README.md" exclude = ["/bors.toml", "/ci/*", "/.github/*"] edition = "2018" diff --git a/RELEASES.md b/RELEASES.md index a07e115..bff9c1d 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,11 @@ +# Release 0.3.2 (2020-11-06) + +- [Fix always rebuilding with --remap-path-prefix][88] + +**Contributors**: @Nemo157 + +[88]: https://github.com/rust-num/num-rational/pull/88 + # Release 0.3.1 (2020-10-29) - [Handle to_f64() with raw division by zero][83]. diff --git a/build.rs b/build.rs index f829088..df5e310 100644 --- a/build.rs +++ b/build.rs @@ -4,5 +4,5 @@ fn main() { println!("cargo:rustc-cfg=has_int_exp_fmt"); } - autocfg::rerun_path(file!()); + autocfg::rerun_path("build.rs"); }