Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stdext"
version = "0.3.2"
version = "0.3.3"
authors = ["Igor Aleksanov <[email protected]>"]
edition = "2018"
repository = "https://github.com/popzxc/stdext-rs"
Expand Down
2 changes: 1 addition & 1 deletion src/default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
///
Expand Down