Releases: taiki-e/easy-ext
Releases · taiki-e/easy-ext
1.0.2
1.0.1
- Fix "patterns aren't allowed in functions without bodies" error when patterns are used in arguments.
1.0.0
-
Remove deprecated old impl-level visibility syntax (
#[ext(pub)]).Use
pub implsyntax instead:- #[ext(pub)] - impl Type { + #[ext] + pub impl Type { fn method(&self) {} }
0.2.9
0.2.8
-
Support specifying visibility directly on
impl.#[ext(Ext)] pub impl Type { fn method(&self) {} }
pub impl Type { ^^^The old impl-level visibility syntax (
#[ext(pub)]) will still be supported, but it is deprecated and will be removed in the next major version.Migration:
- #[ext(pub)] - impl Type { + #[ext] + pub impl Type { fn method(&self) {} }
0.2.7
0.2.6
0.2.5
- Exclude unneeded files from crates.io.
0.2.4
- Documentation improvements.