Skip to content

Releases: jbaublitz/getset

0.1.2

28 Nov 01:27
e540fd4
Compare
Choose a tag to compare

0.1.1

28 Nov 01:26
Compare
Choose a tag to compare

0.1.0

13 Feb 17:49
Compare
Choose a tag to compare
  • 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.9

21 Oct 08:31
Compare
Choose a tag to compare
  • Support CopyGetters (#29, thanks @bachue)
  • Fixup README.md (#38)

0.0.8

01 Sep 19:47
Compare
Choose a tag to compare
  • 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

16 Mar 04:41
Compare
Choose a tag to compare
0.0.7 Pre-release
Pre-release
  • 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

14 May 21:34
Compare
Choose a tag to compare
0.0.6 Pre-release
Pre-release
  • Added chaining for setters #8, #9
  • Updated syn/quote #11 (Thanks @Dushistov!)
  • Use #[inline(always)] #7 .