From 5a1d593c948b678af0a191019dff2902d113d69a Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Tue, 2 Apr 2024 11:38:33 +0400 Subject: [PATCH 1/2] Prepare v0.3.3 release --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- src/default.rs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) 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 /// From d18329f0164f666a36a4467976acd4bb0cbada7b Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Tue, 2 Apr 2024 11:44:46 +0400 Subject: [PATCH 2/2] Try to fix CI --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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