Skip to content

Commit b490637

Browse files
committed
Release 1.0.0
1 parent 447d6bd commit b490637

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
1010

1111
## [Unreleased]
1212

13-
- Remove deprecated old impl-level visibility syntax (`#[ext(pub)]`).
13+
## [1.0.0] - 2021-08-24
14+
15+
- [Remove deprecated old impl-level visibility syntax (`#[ext(pub)]`).](https://github.com/taiki-e/easy-ext/pull/38)
1416

1517
Use `pub impl` syntax instead:
1618

@@ -138,7 +140,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
138140

139141
Initial release
140142

141-
[Unreleased]: https://github.com/taiki-e/easy-ext/compare/v0.2.9...HEAD
143+
[Unreleased]: https://github.com/taiki-e/easy-ext/compare/v1.0.0...HEAD
144+
[1.0.0]: https://github.com/taiki-e/easy-ext/compare/v0.2.9...v1.0.0
142145
[0.2.9]: https://github.com/taiki-e/easy-ext/compare/v0.2.8...v0.2.9
143146
[0.2.8]: https://github.com/taiki-e/easy-ext/compare/v0.2.7...v0.2.8
144147
[0.2.7]: https://github.com/taiki-e/easy-ext/compare/v0.2.6...v0.2.7

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.9"
3+
version = "1.0.0"
44
authors = ["Taiki Endo <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ An attribute macro for easily writing [extension trait pattern][rfc0445].
1010

1111
```toml
1212
[dependencies]
13-
easy-ext = "0.2"
13+
easy-ext = "1"
1414
```
1515

1616
*Compiler support: requires rustc 1.31+*

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! ```toml
44
//! [dependencies]
5-
//! easy-ext = "0.2"
5+
//! easy-ext = "1"
66
//! ```
77
//!
88
//! *Compiler support: requires rustc 1.31+*

0 commit comments

Comments
 (0)