diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77551a2..f5f53ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,11 +78,10 @@ jobs: - name: Install deadlinks run: cargo install cargo-deadlinks - - name: Cargo doc - run: cargo doc --no-deps - - name: Run deadlinks - run: cargo deadlinks --dir target/doc + run: | + cargo doc --no-deps + cargo deadlinks --dir target/doc/stdext test: name: Test diff --git a/CHANGELOG.md b/CHANGELOG.md index 74ccc08..13b9c39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## [[Unreleased]] +## 0.3.3 (18.06.2021) + +- `debug_name` convenience macro [#17]. +- Freestanding `debug` function [#18]. + +[#17]: https://github.com/popzxc/stdext-rs/pull/17 +[#18]: https://github.com/popzxc/stdext-rs/pull/18 + ## 0.3.0 (18.06.2021) - BREAKING: MSRV got bumped to 1.53. diff --git a/Cargo.toml b/Cargo.toml index 567552a..1666d61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stdext" -version = "0.3.2" +version = "0.3.3" authors = ["Igor Aleksanov "] edition = "2018" repository = "https://github.com/popzxc/stdext-rs" diff --git a/src/default.rs b/src/default.rs index 907cb66..975e8c2 100644 --- a/src/default.rs +++ b/src/default.rs @@ -3,7 +3,7 @@ /// Freestanding version of `std::default::Default::default()`. /// /// Used to be available under `#![feature(default_free_fn)]`, -/// removed in https://github.com/rust-lang/rust/pull/113469. +/// removed in [rust-lang/rust#113469](https://github.com/rust-lang/rust/pull/113469). /// /// # Examples ///