File tree 4 files changed +13
-6
lines changed
4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -78,11 +78,10 @@ jobs:
78
78
- name : Install deadlinks
79
79
run : cargo install cargo-deadlinks
80
80
81
- - name : Cargo doc
82
- run : cargo doc --no-deps
83
-
84
81
- name : Run deadlinks
85
- run : cargo deadlinks --dir target/doc
82
+ run : |
83
+ cargo doc --no-deps
84
+ cargo deadlinks --dir target/doc/stdext
86
85
87
86
test :
88
87
name : Test
Original file line number Diff line number Diff line change 2
2
3
3
## [[ Unreleased]]
4
4
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
+
5
13
## 0.3.0 (18.06.2021)
6
14
7
15
- BREAKING: MSRV got bumped to 1.53.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " stdext"
3
- version = " 0.3.2 "
3
+ version = " 0.3.3 "
4
4
authors = [
" Igor Aleksanov <[email protected] >" ]
5
5
edition = " 2018"
6
6
repository = " https://github.com/popzxc/stdext-rs"
Original file line number Diff line number Diff line change 3
3
/// Freestanding version of `std::default::Default::default()`.
4
4
///
5
5
/// 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) .
7
7
///
8
8
/// # Examples
9
9
///
You can’t perform that action at this time.
0 commit comments