4.0.0
Added
- New DocC-based documentation hosted on Swift Package Index
- Extensively improved documentation for all types & functions, including usage examples
- README now showcases the apps most of the code was extracted from (& is used in)
- New "Extensions" DocC article highlighting the most used extension properties & functions
- New "New Types" DocC article highlighting the most used type additions & global functions
- New
CaseIterableextension propertiesallCasesPrefixedByNilandallCasesSuffixedByNil - New
Durationextensions adding minute/hour/days/weeks, conversion to aTimeIntervaland more - New
Floatextension analogous to the existingDoubleextension for rounded values - New
SymmetricKeyextension making conversion to/from base64 encoded String easier - New
AutoConformingtypealias that addsCodable,Hashable, andSendableconformance in one go - New
Debouncertype making debouncing for search input in SwiftUI easy - New
GregorianDaytype for storing just the day part of aDatewithout time - New
GreogorianTimeOfDaytype for storing just the time part of aDatewithout the day - New
OperatingSystemtype with aOStypealias to specify different values based on the current OS
Changed
- Big documentation clean-up & improvements
- The minimum Swift version was bumped from 5.1 to 5.9 (Xcode 14.2+)
Deprecated
- The
HandyRegextype and all its functions are now marked as deprecated. A removal is not planned anytime soon as long asNSRegularExpressionAPI is around. But I encourage you to migrate to Swifts new and very ownRegextype.
Removed
- The
UnownedandWeakwrapper types were removed without substitution - Any dependency managers except Swift Package Manager were dropped (e.g. CocoaPods)
- README no longer serves as the documentation, the docs are moved over to the Swift Package Index (see README)
- Some APIs that are no longer needed because Swift has a comparable alternative were removed with a fix-it
Fixes
- Unit tests & CI setup
Migrating from 3.x
This release is a breaking change.
If you were using Unowned or Weak, you can find & copy their implementation to your project from the old release here.
If you were using Regex, note that you will get errors because it was renamed to HandyRegex. But fix-its could not be provided because Swift now has its own Regex type. So you need to rename uses of Regex to HandyRegex manually.
Some more APIs were renamed or removed in favor of a new Swift feature that should be preferred. Fix-its are provided for all these cases. Most APIs remain unchanged but have much better documentation now. 🎉