Skip to content

Commit 02fc53c

Browse files
committed
Release 0.2.3
1 parent faf46e4 commit 02fc53c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](https://semver.org).
66

77
## [Unreleased]
88

9+
## [0.2.3] - 2020-08-24
10+
11+
* [Documentation (`#[doc]` attributes) is now generated only for trait definitions.](https://github.com/taiki-e/easy-ext/pull/23) Previously it generated for both trait definition and trait implementation. See [#20](https://github.com/taiki-e/easy-ext/issues/20) for more details.
12+
913
## [0.2.2] - 2020-07-22
1014

1115
* [Fix `unused_attributes` lint in generated code.][22]
@@ -67,7 +71,8 @@ This project adheres to [Semantic Versioning](https://semver.org).
6771

6872
Initial release
6973

70-
[Unreleased]: https://github.com/taiki-e/easy-ext/compare/v0.2.2...HEAD
74+
[Unreleased]: https://github.com/taiki-e/easy-ext/compare/v0.2.3...HEAD
75+
[0.2.3]: https://github.com/taiki-e/easy-ext/compare/v0.2.2...v0.2.3
7176
[0.2.2]: https://github.com/taiki-e/easy-ext/compare/v0.2.1...v0.2.2
7277
[0.2.1]: https://github.com/taiki-e/easy-ext/compare/v0.2.0...v0.2.1
7378
[0.2.0]: https://github.com/taiki-e/easy-ext/compare/v0.1.8...v0.2.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-ext"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = ["Taiki Endo <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
//!
117117
//! [rfc0445]: https://github.com/rust-lang/rfcs/blob/master/text/0445-extension-trait-conventions.md
118118
119-
#![doc(html_root_url = "https://docs.rs/easy-ext/0.2.2")]
119+
#![doc(html_root_url = "https://docs.rs/easy-ext/0.2.3")]
120120
#![doc(test(
121121
no_crate_inject,
122122
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

0 commit comments

Comments
 (0)