🚩 Vexil v2
What’s Changed
💥 Breaking Changes
This release includes one breaking change:
FlagValueDictionary
now uses[String: BoxedFlagValue]
as its internal storage instead of[String: Any]
. This allows better interaction with the flag values, not just the keys, but will be a breaking change for anyone casting directly fromAny
. (#93)
🚀 Features
- Changed
FlagValueDictionary
to use[String: BoxedFlagValue]
as its internal storage @bok- (#93) - Added
Codable
support toBoxedFlagValue
@bok- (#91) - Added support for the standard Swift default setter syntax @bok- (#85)