Skip to content

Commit dc03b4a

Browse files
authored
Merge pull request #19 from popzxc/popzxc-v0.3.3
Prepare release v0.3.3
2 parents b371425 + d18329f commit dc03b4a

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.github/workflows/ci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,10 @@ jobs:
7878
- name: Install deadlinks
7979
run: cargo install cargo-deadlinks
8080

81-
- name: Cargo doc
82-
run: cargo doc --no-deps
83-
8481
- name: Run deadlinks
85-
run: cargo deadlinks --dir target/doc
82+
run: |
83+
cargo doc --no-deps
84+
cargo deadlinks --dir target/doc/stdext
8685
8786
test:
8887
name: Test

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [[Unreleased]]
44

5+
## 0.3.3 (18.06.2021)
6+
7+
- `debug_name` convenience macro [#17].
8+
- Freestanding `debug` function [#18].
9+
10+
[#17]: https://github.com/popzxc/stdext-rs/pull/17
11+
[#18]: https://github.com/popzxc/stdext-rs/pull/18
12+
513
## 0.3.0 (18.06.2021)
614

715
- BREAKING: MSRV got bumped to 1.53.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stdext"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
authors = ["Igor Aleksanov <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/popzxc/stdext-rs"

src/default.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// Freestanding version of `std::default::Default::default()`.
44
///
55
/// Used to be available under `#![feature(default_free_fn)]`,
6-
/// removed in https://github.com/rust-lang/rust/pull/113469.
6+
/// removed in [rust-lang/rust#113469](https://github.com/rust-lang/rust/pull/113469).
77
///
88
/// # Examples
99
///

0 commit comments

Comments
 (0)