Releases: jbaublitz/getset
Releases · jbaublitz/getset
0.1.0
- Now tested with Github actions (#46)
- @CreepySkeleton helped us adopt to some new changes in Rust. You'll now need to use
#[getset(get, ...)]
as an attribute instead of [get]
(#55)
- This also means you can use
[getset(get, set)]
! Amazing.
0.0.8
- Support non-identifier visibility like pub(crate) (#28, thanks @djc!)
- Add generated output to README as documentation (#27, thanks @yaahc!)
- Update crate for Rust 2018 (#25, thanks @Atul9!)
0.0.7
- Remove some code duplication (#13)
- Upgraded dependencies (#18, thanks @Hummer12007)
- Better metadata/testing (#20, thanks @Razican)
- Added a
with_prefix
option for getters for some legacy applications (#23)
- Added struct level defaults (#24, thanks @jeizsm)
0.0.6
- Added chaining for setters #8, #9
- Updated syn/quote #11 (Thanks @Dushistov!)
- Use
#[inline(always)]
#7 .