summaryrefslogtreecommitdiffstats
path: root/tokio-macros
diff options
context:
space:
mode:
authorNikolai Vazquez <nikvzqz@gmail.com>2020-04-17 11:23:13 -0400
committerGitHub <noreply@github.com>2020-04-17 11:23:13 -0400
commit6f00d7158bd03961e0bbab464b8b6e218bfe3833 (patch)
tree040936b523a0babd0336ecd588f2fc85b0c63e33 /tokio-macros
parent67c4cc03919a58076c139f0930f28c3c41dad1e5 (diff)
Link PRs in CHANGELOG files (#2383)
Allows for simply clicking on the PR number to view the corresponding changes made.
Diffstat (limited to 'tokio-macros')
-rw-r--r--tokio-macros/CHANGELOG.md17
1 files changed, 12 insertions, 5 deletions
diff --git a/tokio-macros/CHANGELOG.md b/tokio-macros/CHANGELOG.md
index d9edc5d2..91844627 100644
--- a/tokio-macros/CHANGELOG.md
+++ b/tokio-macros/CHANGELOG.md
@@ -1,15 +1,15 @@
# 0.2.5 (February 27, 2019)
### Fixed
-- doc improvements (#2225).
+- doc improvements ([#2225]).
# 0.2.4 (January 27, 2019)
### Fixed
-- generics on `#[tokio::main]` function (#2177).
+- generics on `#[tokio::main]` function ([#2177]).
### Added
-- support for `tokio::select!` (#2152).
+- support for `tokio::select!` ([#2152]).
# 0.2.3 (January 7, 2019)
@@ -19,13 +19,20 @@
# 0.2.2 (January 7, 2019)
### Added
-- General refactoring and inclusion of additional runtime options (#2022 and #2038)
+- General refactoring and inclusion of additional runtime options ([#2022] and [#2038])
# 0.2.1 (December 18, 2019)
### Fixes
-- inherit visibility when wrapping async fn (#1954).
+- inherit visibility when wrapping async fn ([#1954]).
# 0.2.0 (November 26, 2019)
- Initial release
+
+[#2225]: https://github.com/tokio-rs/tokio/pull/2225
+[#2177]: https://github.com/tokio-rs/tokio/pull/2177
+[#2152]: https://github.com/tokio-rs/tokio/pull/2152
+[#2038]: https://github.com/tokio-rs/tokio/pull/2038
+[#2022]: https://github.com/tokio-rs/tokio/pull/2022
+[#1954]: https://github.com/tokio-rs/tokio/pull/1954