Releases: taiki-e/easy-ext
Releases · taiki-e/easy-ext
1.0.3
Immutable
release. Only release title and notes can be modified.
- Enable release immutability.
1.0.2
1.0.1
Immutable
release. Only release title and notes can be modified.
- Fix "patterns aren't allowed in functions without bodies" error when patterns are used in arguments.
1.0.0
Immutable
release. Only release title and notes can be modified.
-
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
Immutable
release. Only release title and notes can be modified.
0.2.8
Immutable
release. Only release title and notes can be modified.
-
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
Immutable
release. Only release title and notes can be modified.
0.2.6
Immutable
release. Only release title and notes can be modified.
0.2.5
Immutable
release. Only release title and notes can be modified.
- Exclude unneeded files from crates.io.
0.2.4
Immutable
release. Only release title and notes can be modified.
- Documentation improvements.