Releases: FlineDev/HandySwift
Releases · FlineDev/HandySwift
4.3.0
4.2.0
Added
- New String extension function
tokenized(locale:)
for creating search terms (learn more) - New String extension function
matchesTokenizedPrefixes(in:locale:)
for convenient fuzzy search (learn more)
4.1.0
Added
- New
advanced/reversed(byMonths:)
andadvanced/reversed(byYears:)
forGregorianDay
- New
startOfMonth(timeZone:)
andstartOfYear(timeZone:)
functions onGregorianDay
- Added more tests to ensure some of the newer functionality continues to work in the future
Changed
- Properties of
GregorianDay
andGregorianTimeOfDay
are now variable & the types conform toWithable
Fixed
- Fixed conversion of
TimeInterval
intoDuration
for fractional seconds - Fixed a build error when using
delay(by:)
due to ambiguity caused by an overload
4.0.1
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
CaseIterable
extension propertiesallCasesPrefixedByNil
andallCasesSuffixedByNil
- New
Duration
extensions adding minute/hour/days/weeks, conversion to aTimeInterval
and more - New
Float
extension analogous to the existingDouble
extension for rounded values - New
SymmetricKey
extension making conversion to/from base64 encoded String easier - New
AutoConforming
typealias that addsCodable
,Hashable
, andSendable
conformance in one go - New
Debouncer
type making debouncing for search input in SwiftUI easy - New
GregorianDay
type for storing just the day part of aDate
without time - New
GreogorianTimeOfDay
type for storing just the time part of aDate
without the day - New
OperatingSystem
type with aOS
typealias 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
HandyRegex
type and all its functions are now marked as deprecated. A removal is not planned anytime soon as long asNSRegularExpression
API is around. But I encourage you to migrate to Swifts new and very ownRegex
type.
Removed
- The
Unowned
andWeak
wrapper 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. 🎉
3.4.0
Added
- Added new convenience
encrypt(key:)
anddecrypt(key:)
functions toString
type for platforms supportingCryptoKit
. Uses AES.GCM algorithm for encryption.
Author: Cihat Gündüz
3.3.0
Added
- Added
round(fractionDigits:rule:)
&rounded(fractionDigits:rule:)
methods toDouble
type.
Author: Cihat Gündüz
3.2.1
Changed
Withable
doesn't require an emptyinit()
method anymore. Instead, it can be combined with any initializer. If you used theFoo { $0.bar = 5 }
type of initializer, you will need to add().with
behind the type like so:Foo().with { $0.bar = 5 }
.
Issue: #49 | PR: #50 | Author: Cihat Gündüz- Improved with new
removeAll
method, conformance toBidirectionalCollection
,ExpressibleByArrayLiteral
and removal ofnewElement
label on `insert.
Author: Cihat Gündüz
Fixed
- Made all functions accept throwing closures to allow wider usage cases for helper functions like
.times
etc.
Author: Cihat Gündüz
3.2.0
Added
- New
DivisibleArithmetic
protocol which easily extendsaverage()
to Collections ofDouble
,Float
andCGFloat
.
Issue: #36 | PR: #38 | Author: David Knothe - Make most of the API
@inlinable
for increased real-time performance.
Issue: #40 | PR: #43 | Author: David Knothe
Changed
- Allow
Int.init?(randomBelow:)
to use an arbitrary RandomNumberGenerator (instead of just the system one).
PR: #44 | Author: David Knothe