• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Change Log: enum-as-inner
2
3All notable changes to this project will be documented in this file.
4This project adheres to [Semantic Versioning](http://semver.org/).
5
6## 0.6.0
7
8- Previous changes deserved a minor version bump, 0.5.2 yanked, 0.6.0 released
9
10## 0.5.2
11
12- Add is_* impl for non unit variants, #91 by goolmoos
13- Fully qualify both Option and Result in generated code, #96 by kepler-5
14
15## 0.5.1
16
17- Generated functions now marked `#[inline]` to help with lto across crate boundaries for libraries, #87 by zxch3n
18
19## 0.5.0
20
21- Changed all references in generated functions to use `Self` where applicable.
22
23## 0.4.0
24
25### Changed
26
27- Change unit variants to use predicate functions (@CeleritasCelery) #76
28
29## 0.3.4
30
31### Changed
32
33- updated `heck` to 0.4 #82
34
35## 0.3.3
36
37### Added
38
39- Support for Generic enum members (@Jan561) #19
40
41## 0.3.2
42
43### Added
44
45- Added `as_mut_*` for mutable access to inners (@yuyoyuppe) #14
46
47## 0.3.1
48
49### Added
50
51- this CHANGELOG.md
52
53### Changes
54
55- Updated docs for new `use` syntax of macros
56
57## 0.3
58
59### Changes
60
61- Upgrade to work with 1.0 versions of proc-macro2, quote, and syn
62
63## 0.2
64
65### Fixes
66
67- some bug fixes for edge conditions
68
69## 0.1
70
71### Added
72
73- first release
74