Skip to content

Commit

Permalink
Merge pull request #19 from popzxc/popzxc-v0.3.3
Browse files Browse the repository at this point in the history
Prepare release v0.3.3
  • Loading branch information
popzxc authored Apr 2, 2024
2 parents b371425 + d18329f commit dc03b4a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
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 <popzxc@yandex.ru>"]
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

0 comments on commit dc03b4a

Please sign in to comment.