Skip to content

4.2.4

Compare
Choose a tag to compare
@ZevEisenberg ZevEisenberg released this 25 Jun 20:32
· 89 commits to master since this release

See all commits since 4.2.3.

Bug Fixes

  • Allow construction of an AnchorPair outside of Anchorage. (#59, @ZevEisenberg)
    • Note: this change is non-breaking, but to realize its benefits, you may need to delete code like this if you had added it to your project:

      extension AnchorPair {
          init(first: T, second: U) {
              self.first = first
              self.second = second
          }
      }