Skip to content

v0.7.0

Compare
Choose a tag to compare
@p-x9 p-x9 released this 18 Jan 13:42
· 74 commits to main since this release
ee63e32

What's Changed

Support type inference

Type specification can now be omitted when initializing using literals such as the following.
Thanks: @mlch911

@AssociatedObject(.OBJC_ASSOCIATION_ASSIGN)
var int = 10

@AssociatedObject(.OBJC_ASSOCIATION_ASSIGN)
var boolArray = [true, false]

@AssociatedObject(.OBJC_ASSOCIATION_ASSIGN)
var optionalIntArray = [1, 2, 3, nil]

@AssociatedObject(.OBJC_ASSOCIATION_ASSIGN)
var dic = ["t": "a", "s": "b"]

New Contributors

Full Changelog: 0.6.0...0.7.0